From: Chunyang Xu Date: Tue, 23 Feb 2016 08:35:03 +0000 (+1100) Subject: Remove spurious newline in package list X-Git-Tag: emacs-26.0.90~2498 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fad14c289d36a2c61e0fd34105ebb1f62c80d71d;p=emacs.git Remove spurious newline in package list * lisp/emacs-lisp/package.el (describe-package-1): Remove spurious newline (bug#21706). --- 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)))