all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#21706: 25.0.50; package.el: describe-package produces a needless newline after "Archive: some-repo" line
@ 2015-10-19  4:59 Chunyang Xu
  2015-10-19  5:03 ` bug#21706: [PATCH] * emacs-lisp/package.el (describe-package-1): Don't print needless newline Chunyang Xu
  2016-01-09  1:26 ` bug#22325: 25.0.50; package.el: describe-package produces a needless newline after "Archive: some-repo" line Xue Fuqiao
  0 siblings, 2 replies; 4+ messages in thread
From: Chunyang Xu @ 2015-10-19  4:59 UTC (permalink / raw
  To: 21706

From 'emacs -Q':

  M-x package-refresh-contents RET C-h P nameless RET

in *Help* buffer, there is a blank line between "Archive: gnu" and
"Version: 0.5.1".

In GNU Emacs 25.0.50.5 (x86_64-apple-darwin15.0.0, NS appkit-1404.11 Version 10.11 (Build 15A284))
of 2015-10-18
Repository revision: 9adfc5f69c08e96e55cf3abb960b86c1a5d74951
Windowing system distributor 'Apple', version 10.3.1404
Configured features:
RSVG IMAGEMAGICK DBUS ACL GNUTLS LIBXML2 ZLIB TOOLKIT_SCROLL_BARS NS

Important settings:
  value of $LC_ALL: en_US.UTF-8
  value of $LC_CTYPE: zh_CN.UTF-8
  value of $LANG: en_US.UTF-8
  locale-coding-system: utf-8-unix

Major mode: Lisp Interaction

Minor modes in effect:
  tooltip-mode: t
  global-eldoc-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t

Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
Importing package-keyring.gpg...done
Contacting host: elpa.gnu.org:80 [2 times]
Failed to download ‘gnu’ archive.
You can run the command ‘package-refresh-contents’ with M-x pa-r- RET
Failed to download ‘gnu’ archive.
Contacting host: elpa.gnu.org:80
Type C-x 1 to delete the help window, C-M-v to scroll help.
Making completion list...

Load-path shadows:
None found.

Features:
(shadow sort mail-extr emacsbug sendmail lisp-mnt thingatpt finder-inf
mm-archive message dired format-spec rfc822 mml mml-sec mailabbrev
gmm-utils mailheader mm-decode mm-bodies mm-encode mail-utils
network-stream nsm starttls url-http tls mail-parse rfc2231 rfc2047
rfc2045 ietf-drums url-gw url-cache url-auth url url-proxy url-privacy
url-expand url-methods url-history url-cookie url-domsuf url-util
mailcap url-handlers url-parse auth-source cl-seq eieio byte-opt
bytecomp byte-compile cl-extra cconv eieio-core cl-macs gv gnus-util
mm-util help-fns help-mode cl-loaddefs pcase cl-lib mail-prsvr
password-cache url-vars epg package easymenu epg-config time-date
mule-util tooltip eldoc electric uniquify ediff-hook vc-hooks
lisp-float-type mwheel ns-win term/common-win tool-bar dnd fontset image
regexp-opt fringe tabulated-list newcomment elisp-mode lisp-mode
prog-mode register page menu-bar rfn-eshadow timer select scroll-bar
mouse jit-lock font-lock syntax facemenu font-core frame cl-generic cham
georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao
korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech
european ethiopic indian cyrillic chinese charscript case-table epa-hook
jka-cmpr-hook help simple abbrev minibuffer cl-preloaded nadvice
loaddefs button faces cus-face macroexp files text-properties overlay
sha1 md5 base64 format env code-pages mule custom widget
hashtable-print-readable backquote dbusbind cocoa ns multi-tty
make-network-process emacs)

Memory information:
((conses 16 107921 8744)
(symbols 48 22111 0)
(miscs 40 50 204)
(strings 32 23713 4280)
(string-bytes 1 661905)
(vectors 16 18646)
(vector-slots 8 852637 109464)
(floats 8 209 126)
(intervals 56 252 0)
(buffers 976 13))





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#21706: [PATCH] * emacs-lisp/package.el (describe-package-1): Don't print needless newline
  2015-10-19  4:59 bug#21706: 25.0.50; package.el: describe-package produces a needless newline after "Archive: some-repo" line Chunyang Xu
@ 2015-10-19  5:03 ` Chunyang Xu
  2016-02-23  8:36   ` Lars Ingebrigtsen
  2016-01-09  1:26 ` bug#22325: 25.0.50; package.el: describe-package produces a needless newline after "Archive: some-repo" line Xue Fuqiao
  1 sibling, 1 reply; 4+ messages in thread
From: Chunyang Xu @ 2015-10-19  5:03 UTC (permalink / raw
  To: 21706; +Cc: Chunyang Xu

---
 lisp/emacs-lisp/package.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index 2dbcdf6..27e3ca2 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -2275,7 +2275,7 @@ describe-package-1
     (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)))
-- 
2.6.0






^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#22325: 25.0.50; package.el: describe-package produces a needless newline after "Archive: some-repo" line
  2015-10-19  4:59 bug#21706: 25.0.50; package.el: describe-package produces a needless newline after "Archive: some-repo" line Chunyang Xu
  2015-10-19  5:03 ` bug#21706: [PATCH] * emacs-lisp/package.el (describe-package-1): Don't print needless newline Chunyang Xu
@ 2016-01-09  1:26 ` Xue Fuqiao
  1 sibling, 0 replies; 4+ messages in thread
From: Xue Fuqiao @ 2016-01-09  1:26 UTC (permalink / raw
  To: 22325

This bug should be merged with bug#21706.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#21706: [PATCH] * emacs-lisp/package.el (describe-package-1): Don't print needless newline
  2015-10-19  5:03 ` bug#21706: [PATCH] * emacs-lisp/package.el (describe-package-1): Don't print needless newline Chunyang Xu
@ 2016-02-23  8:36   ` Lars Ingebrigtsen
  0 siblings, 0 replies; 4+ messages in thread
From: Lars Ingebrigtsen @ 2016-02-23  8:36 UTC (permalink / raw
  To: Chunyang Xu; +Cc: 21706

Chunyang Xu <xuchunyang56@gmail.com> writes:

> -        (or archive "n/a") "\n"))
> +        (or archive "n/a")))

Thanks; applied to the Emacs trunk.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-02-23  8:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-19  4:59 bug#21706: 25.0.50; package.el: describe-package produces a needless newline after "Archive: some-repo" line Chunyang Xu
2015-10-19  5:03 ` bug#21706: [PATCH] * emacs-lisp/package.el (describe-package-1): Don't print needless newline Chunyang Xu
2016-02-23  8:36   ` Lars Ingebrigtsen
2016-01-09  1:26 ` bug#22325: 25.0.50; package.el: describe-package produces a needless newline after "Archive: some-repo" line Xue Fuqiao

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.