1
0
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:
Mattias Engdegård 2023-02-21 16:13:36 +01:00
parent 098add06eb
commit 450be633bb
2 changed files with 2 additions and 2 deletions

View File

@ -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))

View File

@ -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))