mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-26 19:18:50 +00:00
(dired-move-to-filename-regexp): Allow quote in months.
This commit is contained in:
parent
2410d73a13
commit
60389964c5
@ -1565,9 +1565,11 @@ DIR must be a directory name, not a file name."
|
||||
|
||||
(defvar dired-move-to-filename-regexp
|
||||
(let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)")
|
||||
(l-or-quote "\\([A-Za-z']\\|[^\0-\177]\\)")
|
||||
;; In some locales, month abbreviations are as short as 2 letters,
|
||||
;; and they can be followed by ".".
|
||||
(month (concat l l "+\\.?"))
|
||||
;; In Breton, a month name can include a quote character.
|
||||
(month (concat l-or-quote l-or-quote "+\\.?"))
|
||||
(s " ")
|
||||
(yyyy "[0-9][0-9][0-9][0-9]")
|
||||
(dd "[ 0-3][0-9]")
|
||||
|
Loading…
Reference in New Issue
Block a user