diff options
author | Chunyang Xu <xuchunyang56@gmail.com> | 2016-02-23 19:36:23 +1100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2016-02-23 19:36:23 +1100 |
commit | d6925623770117f0e5e6eab0076b8760af289b43 (patch) | |
tree | 9387019b4e5e72923e845154cfc9c4b963853039 /lisp/emacs-lisp | |
parent | b85bfe2c3b1ce53caae33dd696dfd6b6bf5d45eb (diff) | |
download | emacs-d6925623770117f0e5e6eab0076b8760af289b43.tar.gz emacs-d6925623770117f0e5e6eab0076b8760af289b43.tar.bz2 emacs-d6925623770117f0e5e6eab0076b8760af289b43.zip |
Remove spurious newline in package list
* lisp/emacs-lisp/package.el (describe-package-1): Remove
spurious newline (bug#21706).
Copyright-paperwork-exempt: yes
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))) |