aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/help-fns.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el
index 14ceacfd92f..32719275edd 100644
--- a/lisp/help-fns.el
+++ b/lisp/help-fns.el
@@ -113,7 +113,8 @@ With ARG, you are asked to choose which language."
113 (setq val (completing-read (if fn 113 (setq val (completing-read (if fn
114 (format "Describe function (default %s): " fn) 114 (format "Describe function (default %s): " fn)
115 "Describe function: ") 115 "Describe function: ")
116 obarray 'fboundp t nil nil (symbol-name fn))) 116 obarray 'fboundp t nil nil
117 (and fn (symbol-name fn))))
117 (list (if (equal val "") 118 (list (if (equal val "")
118 fn (intern val))))) 119 fn (intern val)))))
119 (if (null function) 120 (if (null function)