diff options
author | Brad King <brad.king@kitware.com> | 2021-01-04 18:30:49 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-01-04 18:31:11 (GMT) |
commit | eb14fff1cabfc1f057f473ecbb9f5b82bbfb1b2b (patch) | |
tree | 02040e6120e3b42f8d9e9ace1a2d537ccf1e456b | |
parent | 49cec642aff38ccfd4b4d995b98b61bae3750c60 (diff) | |
parent | 3987db59c5d01e43342770cadc8521b684aa6bfb (diff) | |
download | CMake-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.el | 2 |
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. |