summaryrefslogtreecommitdiff
path: root/lisp/progmodes/cc-defs.el
diff options
context:
space:
mode:
authorAlan Mackenzie <acm@muc.de>2018-04-02 19:53:41 +0000
committerAlan Mackenzie <acm@muc.de>2018-04-02 19:53:41 +0000
commit3cf4c8d9eb1e560e08a9c98d81f9640affdd9ce9 (patch)
tree5895dcdc26c67893e7323e3266a68f06a103322f /lisp/progmodes/cc-defs.el
parentdfa922dd844c7af966a42b949aee32248ce4e8a2 (diff)
downloademacs-3cf4c8d9eb1e560e08a9c98d81f9640affdd9ce9.tar.gz
emacs-3cf4c8d9eb1e560e08a9c98d81f9640affdd9ce9.tar.bz2
emacs-3cf4c8d9eb1e560e08a9c98d81f9640affdd9ce9.zip
* lisp/progmodes/cc-{defs,engine,langs,vars}.el: Comment the use of "a\\`"
Diffstat (limited to 'lisp/progmodes/cc-defs.el')
-rw-r--r--lisp/progmodes/cc-defs.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/cc-defs.el b/lisp/progmodes/cc-defs.el
index ad9425a509c..7ec57e03b38 100644
--- a/lisp/progmodes/cc-defs.el
+++ b/lisp/progmodes/cc-defs.el
@@ -81,7 +81,7 @@
(progn
(require 'font-lock)
(let (font-lock-keywords)
- (font-lock-compile-keywords '("a\\`"))
+ (font-lock-compile-keywords '("a\\`")) ; doesn't match anything.
font-lock-keywords))))
@@ -1775,7 +1775,7 @@ when it's needed. The default is the current language taken from
(t
re)))
- ;; Produce a regexp that matches nothing.
+ ;; Produce a regexp that doesn't match anything.
(if adorn
"\\(a\\`\\)"
"a\\`")))