diff options
author | Jostein Kjønigsen <jostein@kjonigsen.net> | 2016-07-25 09:56:49 +0200 |
---|---|---|
committer | Jostein Kjønigsen <jostein@kjonigsen.net> | 2016-07-26 14:41:02 +0200 |
commit | ca684ccb467d35cbebf7374746509788a5eb917d (patch) | |
tree | 573eb2590e636f096281f837b83eff405c52a059 /Auxiliary | |
parent | 8f884f2146132a3815b0295ffffb1b6666fbfde1 (diff) | |
download | cmake-ca684ccb467d35cbebf7374746509788a5eb917d.tar.gz |
cmake-mode.el: Fix byte-compilation warnings.
Diffstat (limited to 'Auxiliary')
-rw-r--r-- | Auxiliary/cmake-mode.el | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/Auxiliary/cmake-mode.el b/Auxiliary/cmake-mode.el index 20def8be26..b35d369e67 100644 --- a/Auxiliary/cmake-mode.el +++ b/Auxiliary/cmake-mode.el @@ -114,6 +114,14 @@ set the path with these commands: ;------------------------------------------------------------------------------ ;; +;; Indentation increment. +;; +(defcustom cmake-tab-width 2 + "Number of columns to indent cmake blocks" + :type 'integer + :group 'cmake) + +;; ;; Line indentation function. ;; (defun cmake-indent () @@ -225,13 +233,6 @@ the indentation. Otherwise it retains the same position on the line" ;; (defvar cmake-mode-hook nil) -;; -;; Indentation increment. -;; -(defcustom cmake-tab-width 2 - "Number of columns to indent cmake blocks" - :type 'integer) - ;------------------------------------------------------------------------------ ;; For compatibility with Emacs < 24 |