From f1e4bcdb0c11df9fbf758c8deff8a4aef4dd13db Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 16 Apr 2003 05:03:13 +0000 Subject: [PATCH] (Man-follow-manual-reference): Don't require match when calling completing-read. --- lisp/man.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2