aboutsummaryrefslogtreecommitdiff
path: root/helpful.el
diff options
context:
space:
mode:
Diffstat (limited to 'helpful.el')
-rw-r--r--helpful.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/helpful.el b/helpful.el
index 0d827c6..cb3476f 100644
--- a/helpful.el
+++ b/helpful.el
@@ -1419,7 +1419,9 @@ See also `helpful-callable' and `helpful-variable'."
((fboundp symbol)
(helpful-callable symbol))
((boundp symbol)
- (helpful-variable symbol))))
+ (helpful-variable symbol))
+ (t
+ (user-error "Not bound: %S" symbol))))
;;;###autoload
(defun helpful-variable (symbol)