diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-04-16 05:03:13 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-04-16 05:03:13 +0000 |
commit | f1e4bcdb0c11df9fbf758c8deff8a4aef4dd13db (patch) | |
tree | 2a735058a50023f521dc3196bbbfbe4a0eba74e3 /lisp/man.el | |
parent | a7113309baf28c4740475c713490083c62872ebe (diff) | |
download | emacs-f1e4bcdb0c11df9fbf758c8deff8a4aef4dd13db.tar.gz |
(Man-follow-manual-reference): Don't require match
when calling completing-read.
Diffstat (limited to 'lisp/man.el')
-rw-r--r-- | lisp/man.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/man.el b/lisp/man.el index c7cfe1de2fb..0c26ca4deb8 100644 --- a/lisp/man.el +++ b/lisp/man.el @@ -1198,7 +1198,7 @@ Specify which REFERENCE to use; default is based on word at point." (aheadsym Man-refpages-alist))) chosen (prompt (concat "Refer to: (default " default ") "))) - (setq chosen (completing-read prompt Man-refpages-alist nil t)) + (setq chosen (completing-read prompt Man-refpages-alist)) (if (or (not chosen) (string= chosen "")) default |