Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
60389964
Commit
60389964
authored
Jul 09, 2003
by
Richard M. Stallman
Browse files
(dired-move-to-filename-regexp): Allow quote in months.
parent
2410d73a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
lisp/dired.el
lisp/dired.el
+3
-1
No files found.
lisp/dired.el
View file @
60389964
...
...
@@ -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]"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment