summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Bakke <mbakke@fastmail.com>2020-04-30 23:31:53 +0200
committerMarius Bakke <mbakke@fastmail.com>2020-04-30 23:31:53 +0200
commit229f4fa9522fb56b014ee9c0d8111e8fb6da764d (patch)
treebfb96521325ca829d43233f0b9cbb676888a2af3
parent6c7a39c45e8b31279e0dc9d85f0af71f9a225f85 (diff)
downloadpatches-229f4fa9522fb56b014ee9c0d8111e8fb6da764d.tar
patches-229f4fa9522fb56b014ee9c0d8111e8fb6da764d.tar.gz
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.
-rw-r--r--gnu/packages/emacs-xyz.scm7
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 79f7126ed7..776dcbb897 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