We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f23c82d commit e3eea9aCopy full SHA for e3eea9a
lisp/help-fns.el
@@ -1096,8 +1096,8 @@ frame to show the information about SYMBOL; they default to the
1096
current buffer and the selected frame, respectively."
1097
(interactive
1098
(let* ((v-or-f (symbol-at-point))
1099
- (found (cl-some (lambda (x) (funcall (nth 1 x) v-or-f))
1100
- describe-symbol-backends))
+ (found (if v-or-f (cl-some (lambda (x) (funcall (nth 1 x) v-or-f))
+ describe-symbol-backends)))
1101
(v-or-f (if found v-or-f (function-called-at-point)))
1102
(found (or found v-or-f))
1103
(enable-recursive-minibuffers t)
0 commit comments