diff options
author | David Cole <david.cole@kitware.com> | 2012-01-25 16:17:55 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2012-01-25 16:17:55 (GMT) |
commit | 055999a1ef5c87908f8e02f3688d0bdf5399ac51 (patch) | |
tree | 5ebacf9e71c725a900bf8e56bb0f1d80794788ab | |
parent | 30620e74770e52ff4b2b03850d3ed3f0e21921a3 (diff) | |
parent | 7da35e655047e595b46628c9d5c569b8d71b51c0 (diff) | |
download | CMake-055999a1ef5c87908f8e02f3688d0bdf5399ac51.zip CMake-055999a1ef5c87908f8e02f3688d0bdf5399ac51.tar.gz CMake-055999a1ef5c87908f8e02f3688d0bdf5399ac51.tar.bz2 |
Merge topic 'emacs-mode-indent-issue-12908'
7da35e6 cmake-mode.el: Indent after multiline argument (#12908)
-rw-r--r-- | Docs/cmake-mode.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Docs/cmake-mode.el b/Docs/cmake-mode.el index 2f51f83..4418bfa 100644 --- a/Docs/cmake-mode.el +++ b/Docs/cmake-mode.el @@ -99,6 +99,7 @@ set the path with these commands: (setq region (buffer-substring-no-properties (point) point-start)) (while (and (not (bobp)) (or (looking-at cmake-regex-blank) + (cmake-line-starts-inside-string) (not (and (string-match cmake-regex-indented region) (= (length region) (match-end 0)))))) (forward-line -1) |