1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-18 06:01:22 -08:00

* minibuffer.el (completion-pcm--pattern->regex): Fix last change.

Fixes: debbugs:6160
This commit is contained in:
Stefan Monnier 2010-05-11 09:24:49 -04:00
parent 4767419a31
commit 8a67c70efb
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2010-05-11 Stefan Monnier <monnier@iro.umontreal.ca>
* minibuffer.el (completion-pcm--pattern->regex):
Fix last change (bug#6160).
2010-05-10 Juri Linkov <juri@jurta.org>
Remove nodes visited during Isearch from the Info history.
@ -11,8 +16,8 @@
2010-05-10 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (tramp-do-file-attributes-with-stat): Add space in
format string, in order to work around a bug in pdksh. Reported
by Gilles Pion <gpion@lfdj.com>.
format string, in order to work around a bug in pdksh.
Reported by Gilles Pion <gpion@lfdj.com>.
(tramp-handle-verify-visited-file-modtime): Do not send a command
when the connection is not established.
(tramp-handle-set-file-times): Simplify the check for utc.

View file

@ -1835,8 +1835,8 @@ or a symbol chosen among `any', `star', `point', `prefix'."
(lambda (x)
(cond
((stringp x) (regexp-quote x))
((if (consp group) (memq x group) group)
"\\(.*?\\)" ".*?")))
((if (consp group) (memq x group) group) "\\(.*?\\)")
(t ".*?")))
pattern
""))))
;; Avoid pathological backtracking.