summaryrefslogtreecommitdiff
path: root/lisp/help-fns.el
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2023-02-21 16:13:36 +0100
committerMattias EngdegÄrd <mattiase@acm.org>2023-02-21 18:32:51 +0100
commit450be633bb54054657b2474a9711977bdc9bd574 (patch)
tree82a1876a7ff34bc96df21fd513d7f3982ebfb722 /lisp/help-fns.el
parent098add06eb7d742ff0e6ee0e294931a93a60c71c (diff)
downloademacs-450be633bb54054657b2474a9711977bdc9bd574.tar.gz
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.
Diffstat (limited to 'lisp/help-fns.el')
-rw-r--r--lisp/help-fns.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el
index 84266e02901..50e60b68e17 100644
--- a/lisp/help-fns.el
+++ b/lisp/help-fns.el
@@ -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))