Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
725349c8
Commit
725349c8
authored
May 20, 2002
by
Stefan Monnier
Browse files
(tags-complete-tags-table-file): Don't cons unnecessarily.
parent
f6737625
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
lisp/progmodes/etags.el
lisp/progmodes/etags.el
+2
-4
No files found.
lisp/progmodes/etags.el
View file @
725349c8
...
...
@@ -1750,10 +1750,8 @@ See documentation of variable `tags-file-name'."
(let ((enable-recursive-minibuffers t))
(visit-tags-table-buffer))
(if (eq what t)
(all-completions string (mapcar 'list (tags-table-files))
predicate)
(try-completion string (mapcar 'list (tags-table-files))
predicate))))
(all-completions string (tags-table-files) predicate)
(try-completion string (tags-table-files) predicate))))
;;;###autoload
(defun list-tags (file &optional next-match)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment