From bda2562b10aa89cf4d0e0d554095c12616e39c89 Mon Sep 17 00:00:00 2001 From: Marije Baalman Date: Mon, 27 Apr 2009 16:50:00 +0000 Subject: [PATCH] update the evaluate region shortcut in the minor modes to be the same as in the major mode git-svn-id: https://supercollider.svn.sourceforge.net/svnroot/supercollider/trunk@9125 a380766d-ff14-0410-b294-a243070f3f08 --- el/sclang-minor-mode.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/el/sclang-minor-mode.el b/el/sclang-minor-mode.el index d42e815..6292a7f 100644 --- a/el/sclang-minor-mode.el +++ b/el/sclang-minor-mode.el @@ -10,14 +10,14 @@ Non-null prefix argument turns on the mode. Null prefix argument turns off the mode. When sclang-minor-mode is enabled, you can execute -sclang code with the normal command C-c C-c and C-c C-x." +sclang code with the normal command C-c C-c and C-c C-d." ;; The initial value. nil ;; The indicator for the mode line. " sclang" ;; The minor mode bindings. '(("\C-c\C-c" . sclang-eval-region-or-line) - ("\C-c\C-x" . sclang-eval-region) + ("\C-c\C-d" . sclang-eval-region) ("\C-\M-x" . sclang-eval-defun) ("\C-c\C-h" . sclang-find-help) ("\C-\M-h" . sclang-goto-help-browser) @@ -34,14 +34,14 @@ Non-null prefix argument turns on the mode. Null prefix argument turns off the mode. When sclang-help-minor-mode is enabled, you can execute -sclang code with the normal command C-c C-c and C-c C-x." +sclang code with the normal command C-c C-c and C-c C-d." ;; The initial value. nil ;; The indicator for the mode line. " sclang-help" ;; The minor mode bindings. '(("\C-c\C-c" . sclang-eval-region-or-line) - ("\C-c\C-x" . sclang-eval-region) + ("\C-c\C-d" . sclang-eval-region) ("\C-\M-x" . sclang-eval-defun) ("\C-c\C-h" . sclang-find-help) ("\C-c\C-s" . sclang-main-stop)