From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:43843) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jKxv1-0008GB-8S for guix-patches@gnu.org; Sun, 05 Apr 2020 01:34:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jKxv0-0001hv-2J for guix-patches@gnu.org; Sun, 05 Apr 2020 01:34:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:33538) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jKxuz-0001hi-Pe for guix-patches@gnu.org; Sun, 05 Apr 2020 01:34:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jKxuz-0005SQ-NZ for guix-patches@gnu.org; Sun, 05 Apr 2020 01:34:01 -0400 Subject: [bug#40444] [PATCH] gnu: Add emacs-form-feed. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:43818) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jKxu8-0008BA-RJ for guix-patches@gnu.org; Sun, 05 Apr 2020 01:33:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jKxu7-0001M1-9R for guix-patches@gnu.org; Sun, 05 Apr 2020 01:33:08 -0400 Received: from mx.kolabnow.com ([95.128.36.40]:58550) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jKxu6-0001Le-P4 for guix-patches@gnu.org; Sun, 05 Apr 2020 01:33:07 -0400 Received: from localhost (unknown [127.0.0.1]) by ext-mx-out003.mykolab.com (Postfix) with ESMTP id CCC2540665 for ; Sun, 5 Apr 2020 07:33:04 +0200 (CEST) Received: from mx.kolabnow.com ([127.0.0.1]) by localhost (ext-mx-out003.mykolab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Op6hUU_zbUxG for ; Sun, 5 Apr 2020 07:33:03 +0200 (CEST) Received: from int-mx003.mykolab.com (unknown [10.9.13.3]) by ext-mx-out003.mykolab.com (Postfix) with ESMTPS id 6C51D4014E for ; Sun, 5 Apr 2020 07:33:03 +0200 (CEST) Received: from ext-subm001.mykolab.com (unknown [10.9.6.1]) by int-mx003.mykolab.com (Postfix) with ESMTPS id 18FEA3104 for ; Sun, 5 Apr 2020 07:33:03 +0200 (CEST) From: "LaFreniere, Joseph" Date: Sun, 05 Apr 2020 00:32:58 -0500 Message-ID: <87a73qzed1.fsf@odyssey.lafreniere.xyz> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40444@debbugs.gnu.org --=-=-= Content-Type: text/plain; format=flowed Patch file is attached. -- Joseph LaFreniere --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-gnu-Add-emacs-form-feed.patch >From 4906196f4b43b9cc9460b438bd553e7055a26f2e Mon Sep 17 00:00:00 2001 From: Joseph LaFreniere Date: Sun, 5 Apr 2020 00:31:57 -0500 Subject: [PATCH] gnu: Add emacs-form-feed. * gnu/packages/emacs-xyz.scm (emacs-form-feed): New variable. --- gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index cd2562103c..154d00e7ac 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1873,6 +1873,28 @@ environment set through Direnv.") that the binary uses instead of the actual binary contents.") (license license:gpl3+))) +(define-public emacs-form-feed + (package + (name "emacs-form-feed") + (version "0.2.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wasamasa/form-feed.git") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2")))) + (build-system emacs-build-system) + (home-page "https://github.com/wasamasa/form-feed") + (synopsis "Display ^L glyphs as horizontal lines") + (description + "This package provides a minor mode @code{form-feed-mode} to display page +delimiters which usually appear as ^L glyphs on a single line as horizontal +lines spanning the entire window. The minor mode is suitable for inclusion +into mode hooks and is intended to be used that way.") + (license license:gpl3+))) + (define-public emacs-ggtags (package (name "emacs-ggtags") -- 2.26.0 --=-=-=--