Tweak completion of Makefile targets
* lisp/pcmpl-gnu.el (pcmpl-gnu-make-targets): Require that target names not be preceded by a TAG character (bug#42411). Copyright-paperwork-exempt: yes
This commit is contained in:
parent
178feeec46
commit
44f6a2bba2
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@
|
|||
Return the new list."
|
||||
(goto-char (point-min))
|
||||
(while (re-search-forward
|
||||
"^\\s-*\\([^\n#%.$][^:=\n]*\\)\\s-*:[^=]" nil t)
|
||||
"^\\([^\t\n#%.$][^:=\n]*\\)\\s-*:[^=]" nil t)
|
||||
(setq targets (nconc (split-string (match-string-no-properties 1))
|
||||
targets)))
|
||||
targets)
|
||||
|
|
Loading…
Add table
Reference in a new issue