diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2019-03-08 09:08:46 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2019-03-08 09:09:40 -0800 |
commit | db9c924d3d53f46846ad8fd74a5d08f4586a520e (patch) | |
tree | c37a307f6c34279103e203dc0a3c64eab9192a36 /lisp/speedbar.el | |
parent | 0dbc4a697afb2a1e409909289f608fd4da875c24 (diff) | |
download | emacs-db9c924d3d53f46846ad8fd74a5d08f4586a520e.tar.gz |
More regexp corrections and tweaks
From suggestions by Mattias EngdegÄrd in:
https://lists.gnu.org/r/emacs-devel/2019-03/msg00131.html
* lisp/arc-mode.el (archive-rar-summarize):
* lisp/gnus/gnus-art.el (gnus-button-valid-localpart-regexp):
* lisp/language/ethio-util.el (ethio-fidel-to-tex-buffer):
* lisp/nxml/rng-uri.el (rng-file-name-uri):
* lisp/org/org-mobile.el (org-mobile-apply):
* lisp/progmodes/cperl-mode.el (cperl-init-faces):
* lisp/progmodes/fortran.el (fortran-fill):
* lisp/progmodes/mantemp.el (mantemp-remove-comments)
(mantemp-remove-memfuncs, mantemp-insert-cxx-syntax):
* lisp/speedbar.el (speedbar-directory-buttons-follow):
* lisp/vc/add-log.el (change-log-font-lock-keywords):
Fix more regular expressions that seem to be typos or infelicities.
Diffstat (limited to 'lisp/speedbar.el')
-rw-r--r-- | lisp/speedbar.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/speedbar.el b/lisp/speedbar.el index 46b3f2ea90b..a7fd564e948 100644 --- a/lisp/speedbar.el +++ b/lisp/speedbar.el @@ -3388,7 +3388,7 @@ expanded. INDENT is the current indentation level." "Speedbar click handler for default directory buttons. TEXT is the button clicked on. TOKEN is the directory to follow. INDENT is the current indentation level and is unused." - (if (string-match "^[A-z]:$" token) + (if (string-match "^[A-Za-z]:$" token) (setq default-directory (concat token "/")) (setq default-directory token)) ;; Because we leave speedbar as the current buffer, |