summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-01-04 18:30:49 (GMT)
committerKitware Robot <kwrobot@kitware.com>2021-01-04 18:31:11 (GMT)
commiteb14fff1cabfc1f057f473ecbb9f5b82bbfb1b2b (patch)
tree02040e6120e3b42f8d9e9ace1a2d537ccf1e456b
parent49cec642aff38ccfd4b4d995b98b61bae3750c60 (diff)
parent3987db59c5d01e43342770cadc8521b684aa6bfb (diff)
downloadCMake-eb14fff1cabfc1f057f473ecbb9f5b82bbfb1b2b.zip
CMake-eb14fff1cabfc1f057f473ecbb9f5b82bbfb1b2b.tar.gz
CMake-eb14fff1cabfc1f057f473ecbb9f5b82bbfb1b2b.tar.bz2
Merge topic 'emacs-mode-not-char'
3987db59c5 cmake-mode.el: Fix rx usage for Emacs 26 Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Przemyslaw Kryger <pkryger@gmail.com> Acked-by: Jostein Kjønigsen <jostein@kjonigsen.net> Merge-request: !5657
-rw-r--r--Auxiliary/cmake-mode.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/Auxiliary/cmake-mode.el b/Auxiliary/cmake-mode.el
index 52f2d41..ddc7b40 100644
--- a/Auxiliary/cmake-mode.el
+++ b/Auxiliary/cmake-mode.el
@@ -211,7 +211,7 @@ the indentation. Otherwise it retains the same position on the line"
"end"
(or "function" "macro")
(zero-or-more space)
- "(" (zero-or-more (not ")")) ")"))
+ "(" (zero-or-more (not-char ")")) ")"))
(defun cmake-beginning-of-defun ()
"Move backward to the beginning of a CMake function or macro.