mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-11 16:40:45 -08:00
Remove spurious space in byte-compiler warning
* lisp/emacs-lisp/bytecomp.el
(byte-compile-docstring-length-warn): Remove spurious space in
byte-compiler warning.
* test/lisp/emacs-lisp/bytecomp-tests.el
("warn-wide-docstring-defun.el"): Update test.
This commit is contained in:
parent
79335aa185
commit
e637afce45
2 changed files with 3 additions and 3 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue