guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: emacs-toml-mode: Fix syntax error in descrip


From: guix-commits
Subject: branch master updated: gnu: emacs-toml-mode: Fix syntax error in description.
Date: Thu, 30 Apr 2020 17:32:48 -0400

This is an automated email from the git hooks/post-receive script.

mbakke pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 229f4fa  gnu: emacs-toml-mode: Fix syntax error in description.
229f4fa is described below

commit 229f4fa9522fb56b014ee9c0d8111e8fb6da764d
Author: Marius Bakke <address@hidden>
AuthorDate: Thu Apr 30 23:31:53 2020 +0200

    gnu: emacs-toml-mode: Fix syntax error in description.
    
    * gnu/packages/emacs-xyz.scm (emacs-toml-mode)[description]: Replace usage 
of
    @acronym with @dfn to work around a Guile Texinfo limitation.
---
 gnu/packages/emacs-xyz.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 79f7126..776dcbb 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -2660,8 +2660,11 @@ Stack Overflow, Super User, and other StackExchange 
sites.")
       (home-page "https://github.com/dryman/toml-mode.el";)
       (synopsis "Emacs major mode for editing TOML files")
       (description
-       "This package provides a major mode for editing files in @acronym{TOML,
-Tom's Obvious, Minimal Language} data format.")
+       ;; XXX: Ideally we'd use @acronym for "TOML", but Guile's Texinfo
+       ;; parser does not currently support @comma{}, making it impossible
+       ;; to use commas in the @acronym arguments.
+       "This package provides a major mode for editing files in @dfn{TOML}
+(Tom's Obvious, Minimal Language) data format.")
       (license license:gpl3+))))
 
 (define-public emacs-twittering-mode



reply via email to

[Prev in Thread] Current Thread [Next in Thread]