1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

Remove spurious newline in package list

* lisp/emacs-lisp/package.el (describe-package-1): Remove
spurious newline (bug#21706).

Copyright-paperwork-exempt: yes
This commit is contained in:
Chunyang Xu 2016-02-23 19:36:23 +11:00 committed by Lars Ingebrigtsen
parent b85bfe2c3b
commit d692562377

View File

@ -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)))