Parse pcomplete arguments regardless of pcomplete-cycle-completions
* pcomplete.el (pcomplete-parse-arguments): Parse arguments regardless of pcomplete-cycle-completions's value. Fixes: debbugs:18950
This commit is contained in:
parent
b6b9d465cb
commit
dfa8729c10
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2015-01-16 Samer Masterson <samer@samertm.com> (tiny change)
|
||||
|
||||
* pcomplete.el (pcomplete-parse-arguments): Parse arguments
|
||||
regardless of pcomplete-cycle-completions's value. (Bug#18950)
|
||||
|
||||
2015-01-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* dom.el (dom-strings): New function.
|
||||
|
|
|
@ -755,8 +755,7 @@ this is `comint-dynamic-complete-functions'."
|
|||
pcomplete-index 0
|
||||
pcomplete-stub (pcomplete-arg 'last))
|
||||
(let ((begin (pcomplete-begin 'last)))
|
||||
(if (and pcomplete-cycle-completions
|
||||
(listp pcomplete-stub) ;??
|
||||
(if (and (listp pcomplete-stub) ;??
|
||||
(not pcomplete-expand-only-p))
|
||||
(let* ((completions pcomplete-stub) ;??
|
||||
(common-stub (car completions))
|
||||
|
|
Loading…
Add table
Reference in a new issue