From f96313f1101c02fba910d85d63148d402397be3e Mon Sep 17 00:00:00 2001 From: Dmitry Gutov Date: Wed, 6 May 2015 04:35:46 +0300 Subject: [PATCH] Don't require match * lisp/progmodes/xref.el (xref--read-identifier): Don't require match. That doesn't work for every command, and some identifier completion tables are bound to be imperfect anyway. --- lisp/progmodes/xref.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index f11dff1d08e..f6faaf640b2 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el @@ -624,7 +624,7 @@ Return an alist of the form ((FILENAME . (XREF ...)) ...)." (cond ((or current-prefix-arg xref-prompt-for-identifier (not id)) (completing-read prompt (funcall xref-identifier-completion-table-function) - nil t nil + nil nil nil 'xref--read-identifier-history id)) (t id)))) -- 2.11.4.GIT