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)