diff options
author | Brad King <brad.king@kitware.com> | 2013-11-19 14:47:15 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-11-19 14:47:15 (GMT) |
commit | 46d85a1da0c22efa4a11e218d2809ff8da984c9b (patch) | |
tree | 527ea2b6680bba54ae614058ccf5ef689f9bb808 | |
parent | 4aea6d7e0f5397b78632e438d083ce06a84a3001 (diff) | |
parent | 0f21261868b3b02ccc65314c957f3102f9edc4ef (diff) | |
download | CMake-46d85a1da0c22efa4a11e218d2809ff8da984c9b.zip CMake-46d85a1da0c22efa4a11e218d2809ff8da984c9b.tar.gz CMake-46d85a1da0c22efa4a11e218d2809ff8da984c9b.tar.bz2 |
Merge topic 'emacs-mode-no-reserved-bindings'
0f21261 cmake-mode.el: drop reserved keybindings (#14576)
-rw-r--r-- | Auxiliary/cmake-mode.el | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/Auxiliary/cmake-mode.el b/Auxiliary/cmake-mode.el index 6feed94..79d2319 100644 --- a/Auxiliary/cmake-mode.el +++ b/Auxiliary/cmake-mode.el @@ -230,26 +230,13 @@ the indentation. Otherwise it retains the same position on the line" ;; (defvar cmake-tab-width 2) -;; -;; Keymap. -;; -(defvar cmake-mode-map - (let ((map (make-sparse-keymap))) - (define-key map "\C-ch" 'cmake-help-command) - (define-key map "\C-cl" 'cmake-help-list-commands) - (define-key map "\C-cu" 'unscreamify-cmake-buffer) - map) - "Keymap used in cmake-mode buffers.") - ;------------------------------------------------------------------------------ ;; ;; CMake mode startup function. ;; (defun cmake-mode () - "Major mode for editing CMake listfiles. - -\\{cmake-mode-map}" + "Major mode for editing CMake listfiles." (interactive) (kill-all-local-variables) (setq major-mode 'cmake-mode) @@ -276,9 +263,6 @@ the indentation. Otherwise it retains the same position on the line" (make-local-variable 'comment-start) (setq comment-start "#") - ; Setup keymap. - (use-local-map cmake-mode-map) - ; Run user hooks. (run-hooks 'cmake-mode-hook)) |