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