diff options
author | Chunyang Xu <xuchunyang56@gmail.com> | 2016-02-23 19:35:03 +1100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-23 19:35:03 +1100 |
commit | fad14c289d36a2c61e0fd34105ebb1f62c80d71d (patch) | |
tree | 9387019b4e5e72923e845154cfc9c4b963853039 /lisp/emacs-lisp | |
parent | 1b0bf990b53a2626e2b825101615d72d78f98ef7 (diff) | |
download | emacs-fad14c289d36a2c61e0fd34105ebb1f62c80d71d.tar.gz emacs-fad14c289d36a2c61e0fd34105ebb1f62c80d71d.tar.bz2 emacs-fad14c289d36a2c61e0fd34105ebb1f62c80d71d.zip |
Remove spurious newline in package list
* lisp/emacs-lisp/package.el (describe-package-1): Remove
spurious newline (bug#21706).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index dc050444b8d..6bfc96cc6e7 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -2289,7 +2289,7 @@ Otherwise no newline is inserted." (insert "\n") (unless (and pkg-dir (not archive)) ; Installed pkgs don't have archive. (package--print-help-section "Archive" - (or archive "n/a") "\n")) + (or archive "n/a"))) (and version (package--print-help-section "Version" (package-version-join version))) |