diff options
| author | Alex Kost <alezost@gmail.com> | 2017-04-12 21:35:20 +0300 |
|---|---|---|
| committer | Alex Kost <alezost@gmail.com> | 2017-04-12 21:35:20 +0300 |
| commit | b070ce34c307fc14d4ab57758a8fd31e8fa99c7f (patch) | |
| tree | a75a5ccc98adaebf069c2c049e46c0d4dd9a8f1f | |
| parent | elisp/help: Add 'guix-info' command (diff) | |
| download | guix-wigust-b070ce34c307fc14d4ab57758a8fd31e8fa99c7f.tar.gz | |
scheme/packages: Support texinfo markup in synopses
This feature is available since
<http://git.savannah.gnu.org/cgit/guix.git/commit/?id=689db38e3467f66725e8841eac72225110a75a17>.
* scheme/emacs-guix/packages.scm (%package-param-alist): Use
'package-synopsis-string' instead of 'package-synopsis'.
| -rw-r--r-- | scheme/emacs-guix/packages.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scheme/emacs-guix/packages.scm b/scheme/emacs-guix/packages.scm index 2ab97f1..8db7e81 100644 --- a/scheme/emacs-guix/packages.scm +++ b/scheme/emacs-guix/packages.scm @@ -242,7 +242,7 @@ of RESULT. ENTRIES is a list of manifest entries with NAME/VERSION." (version . ,package-version) (license . ,package-license-names) (source . ,package-source-names) - (synopsis . ,package-synopsis) + (synopsis . ,package-synopsis-string) (description . ,package-description-string) (home-url . ,package-home-page) (outputs . ,package-outputs) |
