civodul pushed a commit to branch master
in repository guix.

commit df2d77c45ff357a25fee5f96478b1b65dc93f507
Author: Thorsten Wilms <t...@freenet.de>
Date:   Mon Oct 8 21:12:54 2018 +0200

    gnu: Add emacs-colum-marker.
    
    * gnu/packages/emacs.scm (emacs-colum-marker): New variable.
    
    Signed-off-by: Ludovic Courtès <l...@gnu.org>
---
 gnu/packages/emacs.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index aad698d..c9493da 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -39,6 +39,7 @@
 ;;; Copyright © 2018 Jack Hill <jackh...@jackhill.us>
 ;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.ro...@inria.fr>
 ;;; Copyright © 2018 Alex Branham <alex.bran...@gmail.com>
+;;; Copyright © 2018 Thorsten Wilms <t...@freenet.de>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -12353,3 +12354,24 @@ with a handful of easy tweaks.
 scratch, and you think the Spacemacs theme looks good.
 @end itemize")
     (license license:gpl3+)))
+
+(define-public emacs-column-marker
+  (package
+    (name "emacs-column-marker")
+    (version "9")
+    (source
+     (origin
+       (method url-fetch)
+       (uri "https://www.emacswiki.org/emacs/download/column-marker.el";)
+       (sha256 (base32 
"05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"))))
+    (build-system emacs-build-system)
+    (home-page "https://www.emacswiki.org/emacs/ColumnMarker";)
+    (synopsis "Emacs mode for highlighting columns")
+    (description
+     "With @code{column-marker.el} you can highlight any number of text 
columns.
+Three such highlight column markers are provided by default.  This is
+especially useful for languages like COBOL or Fortran where certain columns
+have special meaning.  It is also handy for aligning text across long vertical
+distances.  Multi-column characters, such as @kbd{TAB} are treated
+correctly.")
+    (license license:gpl2+)))

Reply via email to