]> git.eshelyaron.com Git - emacs.git/commitdiff
help-follow-symbol now complains if no symbol found (bug#38248)
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 22 Nov 2019 20:10:49 +0000 (21:10 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 22 Nov 2019 20:10:49 +0000 (21:10 +0100)
* lisp/help-mode.el (help-follow-symbol): Signal 'user-error' if
there's no symbol at POS.

* etc/NEWS: Document it.

etc/NEWS
lisp/help-mode.el

index b92fdeb67578e805f18eaf44a426679e0235c9d2..ad349b1613accc1538ea1a5c1a386dd8823a4055 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2588,6 +2588,10 @@ pointer is over.  To change this behaviour, you can customize the user
 option 'mouse-wheel-follow-mouse'.  Note that this will also affect
 scrolling.
 
+---
+** help-follow-symbol now signals 'user-error' if point (or the
+position pointed to by the argument POS) is not in a symbol.
+
 \f
 * Lisp Changes in Emacs 27.1
 
index 054a1ef8c2459b77e4949de859c23cee5c6d4cfc..e70570c3eed6d1f62173d7a3205d0559e9db12c6 100644 (file)
@@ -749,10 +749,11 @@ Show all docs for that symbol as either a variable, function or face."
            (buffer-substring (point)
                              (progn (skip-syntax-forward "w_")
                                     (point)))))))
-    (when (or (boundp sym)
-             (get sym 'variable-documentation)
-             (fboundp sym) (facep sym))
-      (help-do-xref pos #'describe-symbol (list sym)))))
+    (if (or (boundp sym)
+           (get sym 'variable-documentation)
+           (fboundp sym) (facep sym))
+        (help-do-xref pos #'describe-symbol (list sym))
+      (user-error "No symbol here"))))
 
 (defun help-mode-revert-buffer (_ignore-auto noconfirm)
   (when (or noconfirm (yes-or-no-p "Revert help buffer? "))