Merge topic 'emacs-mode-custom-tab-width'

f12b899f cmake-mode.el: Make cmake-tab-width a customizable variable
This commit is contained in:
Brad King 2016-05-10 14:40:54 -04:00 committed by CMake Topic Stage
commit b050c58e3f
1 changed files with 3 additions and 1 deletions

View File

@ -228,7 +228,9 @@ the indentation. Otherwise it retains the same position on the line"
;;
;; Indentation increment.
;;
(defvar cmake-tab-width 2)
(defcustom cmake-tab-width 2
"Number of columns to indent cmake blocks"
:type 'integer)
;------------------------------------------------------------------------------