summaryrefslogtreecommitdiff
path: root/lisp/transient.el
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2021-05-06 15:50:39 +0200
committerMattias EngdegÄrd <mattiase@acm.org>2021-05-06 15:53:48 +0200
commit12bab2092045876a8193402c9f69af196ea22969 (patch)
tree77beac5a6ce35afc62d60c03f41e7ca017961d15 /lisp/transient.el
parent896384b542cabdc000eafb80c9082830f692bbb2 (diff)
downloademacs-12bab2092045876a8193402c9f69af196ea22969.tar.gz
emacs-12bab2092045876a8193402c9f69af196ea22969.tar.bz2
emacs-12bab2092045876a8193402c9f69af196ea22969.zip
Tidy file-matching regexps and remove some ineffective backslashes
* lisp/emacs-lisp/package.el (package--delete-directory): * lisp/net/tramp-cmds.el (tramp-recompile-elpa): Escape dot; replace $ with \'. * lisp/help.el (help-for-help): * lisp/transient.el (transient-font-lock-keywords): Remove useless backslashes.
Diffstat (limited to 'lisp/transient.el')
-rw-r--r--lisp/transient.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/transient.el b/lisp/transient.el
index 6e7b5ea876a..2ce7b7c30e1 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -3569,7 +3569,7 @@ we stop there."
"transient-define-argument"
"transient-define-suffix")
t)
- "\\_>[ \t'\(]*"
+ "\\_>[ \t'(]*"
"\\(\\(?:\\sw\\|\\s_\\)+\\)?")
(1 'font-lock-keyword-face)
(2 'font-lock-function-name-face nil t)))))