[Cmake-commits] CMake branch, next, updated. v3.4.0-rc1-228-gfe32129

Brad King brad.king at kitware.com
Thu Oct 8 15:05:15 EDT 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  fe32129dabe409b66d09e03c489d18b7a35b383a (commit)
       via  47f4b3b662da7f49fd0353b978eaf781608e9282 (commit)
      from  6143d7b19761653a13e96b03705392eeb2a78dd5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=fe32129dabe409b66d09e03c489d18b7a35b383a
commit fe32129dabe409b66d09e03c489d18b7a35b383a
Merge: 6143d7b 47f4b3b
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Oct 8 15:05:14 2015 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Oct 8 15:05:14 2015 -0400

    Merge topic 'emacs-mode-unscreamify-more' into next
    
    47f4b3b6 cmake-mode.el: unscreamify symbols instead of words


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=47f4b3b662da7f49fd0353b978eaf781608e9282
commit 47f4b3b662da7f49fd0353b978eaf781608e9282
Author:     Kevin Burge <kevin.burge at systemware.com>
AuthorDate: Thu Oct 8 13:27:54 2015 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Thu Oct 8 15:03:11 2015 -0400

    cmake-mode.el: unscreamify symbols instead of words
    
    cmake-unscreamify-buffer should unscream more than just
    words. For example:
    
    CHECK_FUNCTION_EXISTS (...)

diff --git a/Auxiliary/cmake-mode.el b/Auxiliary/cmake-mode.el
index e50ae7b..08ac490 100644
--- a/Auxiliary/cmake-mode.el
+++ b/Auxiliary/cmake-mode.el
@@ -177,7 +177,7 @@ the indentation.  Otherwise it retains the same position on the line"
   (interactive)
   (save-excursion
     (goto-char (point-min))
-    (while (re-search-forward "^\\([ \t]*\\)\\(\\w+\\)\\([ \t]*(\\)" nil t)
+    (while (re-search-forward "^\\([ \t]*\\)\\_<\\(\\(?:\\w\\|\\s_\\)+\\)\\_>\\([ \t]*(\\)" nil t)
       (replace-match
        (concat
         (match-string 1)

-----------------------------------------------------------------------

Summary of changes:
 Auxiliary/cmake-mode.el |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list