mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-25 07:28:20 +00:00
Remove stray quotes
* lisp/emacs-lisp/bytecomp.el (byte-compile-form): * lisp/help-fns.el (help-fns--interactive-only): Fix obvious mistake. Since `interactive-only` is not supposed to be anything other than a symbol at these points it was not a very consequential bug.
This commit is contained in:
parent
098add06eb
commit
450be633bb
@ -3443,7 +3443,7 @@ lambda-expression."
|
||||
(format "; %s"
|
||||
(substitute-command-keys
|
||||
interactive-only)))
|
||||
((and (symbolp 'interactive-only)
|
||||
((and (symbolp interactive-only)
|
||||
(not (eq interactive-only t)))
|
||||
(format-message "; use `%s' instead."
|
||||
interactive-only))
|
||||
|
@ -778,7 +778,7 @@ the C sources, too."
|
||||
;; Cf byte-compile-form.
|
||||
(cond ((stringp interactive-only)
|
||||
(format ";\n in Lisp code %s" interactive-only))
|
||||
((and (symbolp 'interactive-only)
|
||||
((and (symbolp interactive-only)
|
||||
(not (eq interactive-only t)))
|
||||
(format-message ";\n in Lisp code use `%s' instead."
|
||||
interactive-only))
|
||||
|
Loading…
Reference in New Issue
Block a user