diff options
author | Po Lu <luangruo@yahoo.com> | 2021-12-07 09:32:13 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2021-12-07 09:32:13 +0800 |
commit | d9b3f665bc57bc78716f4c9d5efebf283f7e1964 (patch) | |
tree | 4795b7d972c36f84ae57632922a05de2e01fd856 /lisp/emacs-lisp | |
parent | 0b6a632f99214e2d1e9e1d72b8f8b3a7f054d552 (diff) | |
parent | e17aea73a5b2ae5f7cbf9057d7dad286be81ffc0 (diff) | |
download | emacs-d9b3f665bc57bc78716f4c9d5efebf283f7e1964.tar.gz emacs-d9b3f665bc57bc78716f4c9d5efebf283f7e1964.tar.bz2 emacs-d9b3f665bc57bc78716f4c9d5efebf283f7e1964.zip |
Merge remote-tracking branch 'origin/master' into feature/pgtk
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index d6b25e02795..b1afa6fe611 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1712,10 +1712,10 @@ It is too wide if it has any lines longer than the largest of (nth 2 form))))) (when (and (consp name) (eq (car name) 'quote)) (setq name (cadr name))) - (setq name (if name (format " `%s'" name) "")) + (setq name (if name (format " `%s' " name) "")) (when (and kind docs (stringp docs) (byte-compile--wide-docstring-p docs col)) - (byte-compile-warn "%s%s docstring wider than %s characters" + (byte-compile-warn "%s%sdocstring wider than %s characters" kind name col)))) form) |