changeset 26805:45e359e91cbb

1999-12-11 Samir Barjoud <samir@mindspring.com> * help.el (where-is): use `commandp' as predicate for `completing-read'
author Dave Love <fx@gnu.org>
date Sat, 11 Dec 1999 23:44:45 +0000
parents ce54b1d60246
children 8032bd5fe427
files lisp/help.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/help.el	Fri Dec 10 21:52:33 1999 +0000
+++ b/lisp/help.el	Sat Dec 11 23:44:45 1999 +0000
@@ -874,7 +874,7 @@
      (setq val (completing-read (if fn
 				    (format "Where is command (default %s): " fn)
 				  "Where is command: ")
-				obarray 'fboundp t))
+				obarray 'commandp t))
      (list (if (equal val "")
 	       fn (intern val))
 	   current-prefix-arg)))