1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-22 07:09:54 +00:00

* lisp/pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)

This commit is contained in:
Glenn Morris 2012-01-24 13:10:39 -05:00
parent 1021c7615d
commit b559f1a908
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2012-01-24 Glenn Morris <rgm@gnu.org>
* pcmpl-gnu.el (pcomplete/tar): Handle " - ". (Bug#10457)
2012-01-24 Julien Danjou <julien@danjou.info>
* color.el (color-rgb-to-hsl): Fix value computing.

View File

@ -243,6 +243,8 @@
"--volno-file=")))
(pcomplete-opt "01234567ABCFGKLMNOPRSTUVWXZbcdfghiklmoprstuvwxz"))
(cond
((pcomplete-match "\\`-\\'" 0)
(pcomplete-here*))
((pcomplete-match "\\`--after-date=" 0)
(pcomplete-here*))
((pcomplete-match "\\`--backup=" 0)