Mercurial > emacs
diff lisp/help.el @ 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 | 6af9f1dc59c4 |
| children | 1cc1c05b9ab7 |
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)))
