aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDmitry Gutov2015-05-06 04:35:46 +0300
committerDmitry Gutov2015-05-06 05:58:23 +0300
commitf96313f1101c02fba910d85d63148d402397be3e (patch)
tree55b357643b5decf31f2d04ff43bde99bf820392a
parenta7d630eb4895a392bcc0d9986d1ca5382a4f7b96 (diff)
downloademacs-f96313f1101c02fba910d85d63148d402397be3e.tar.gz
emacs-f96313f1101c02fba910d85d63148d402397be3e.zip
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.
-rw-r--r--lisp/progmodes/xref.el2
1 files changed, 1 insertions, 1 deletions
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 ...)) ...)."
624 (cond ((or current-prefix-arg xref-prompt-for-identifier (not id)) 624 (cond ((or current-prefix-arg xref-prompt-for-identifier (not id))
625 (completing-read prompt 625 (completing-read prompt
626 (funcall xref-identifier-completion-table-function) 626 (funcall xref-identifier-completion-table-function)
627 nil t nil 627 nil nil nil
628 'xref--read-identifier-history id)) 628 'xref--read-identifier-history id))
629 (t id)))) 629 (t id))))
630 630