aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/emulation
diff options
context:
space:
mode:
authorStefan Monnier2009-09-11 00:58:59 +0000
committerStefan Monnier2009-09-11 00:58:59 +0000
commit8cb95edf7cdec140efb1c8dbf4f7f33320f0ca0c (patch)
tree082de7005695b6792640b4a2d54cfbe4a67921fc /lisp/emulation
parent599498c31f0ce7a3ffd6094a12a986766b5a694d (diff)
downloademacs-8cb95edf7cdec140efb1c8dbf4f7f33320f0ca0c.tar.gz
emacs-8cb95edf7cdec140efb1c8dbf4f7f33320f0ca0c.zip
* keymap.c (QCadvertised_binding): New constant.
(syms_of_keymap): Initialize it. (Fwhere_is_internal): Try and use bindings from :advertised-binding if applicable. * progmodes/xscheme.el (xscheme-evaluation-commands): Put a :advertised-binding property rather than using advertised-xscheme-send-previous-expression. (advertised-xscheme-send-previous-expression): Declare obsolete. * emulation/crisp.el (crisp-mode-map): Use `undo' rather than `advertised-undo'. (crisp-mode): Add corresponding bindings to undo's :advertised-binding instead. * dired.el (dired-mode-map): Put a :advertised-binding property rather than using dired-advertised-find-file. (dired-advertised-find-file): * simple.el (advertised-undo): * wid-edit.el (advertised-widget-backward): Declare obsolete. (widget-keymap): Put a :advertised-binding property rather than using advertised-widget-backward. * bindings.el (ctl-x-map): Put a :advertised-binding property rather than using advertised-undo. * tutorial.el (tutorial--default-keys): Adjust accordingly.
Diffstat (limited to 'lisp/emulation')
-rw-r--r--lisp/emulation/crisp.el9
1 files changed, 7 insertions, 2 deletions
diff --git a/lisp/emulation/crisp.el b/lisp/emulation/crisp.el
index 64ca561fbe2..a53adf00fea 100644
--- a/lisp/emulation/crisp.el
+++ b/lisp/emulation/crisp.el
@@ -55,6 +55,8 @@
55 55
56;;; Code: 56;;; Code:
57 57
58(eval-when-compile (require 'cl))
59
58;; local variables 60;; local variables
59 61
60(defgroup crisp nil 62(defgroup crisp nil
@@ -205,8 +207,8 @@ does not load the scroll-all package."
205(define-key crisp-mode-map [(meta m)] 'set-mark-command) 207(define-key crisp-mode-map [(meta m)] 'set-mark-command)
206(define-key crisp-mode-map [(meta n)] 'bury-buffer) 208(define-key crisp-mode-map [(meta n)] 'bury-buffer)
207(define-key crisp-mode-map [(meta p)] 'crisp-unbury-buffer) 209(define-key crisp-mode-map [(meta p)] 'crisp-unbury-buffer)
208(define-key crisp-mode-map [(meta u)] 'advertised-undo) 210(define-key crisp-mode-map [(meta u)] 'undo)
209(define-key crisp-mode-map [(f14)] 'advertised-undo) 211(define-key crisp-mode-map [(f14)] 'undo)
210(define-key crisp-mode-map [(meta w)] 'save-buffer) 212(define-key crisp-mode-map [(meta w)] 'save-buffer)
211(define-key crisp-mode-map [(meta x)] 'crisp-meta-x-wrapper) 213(define-key crisp-mode-map [(meta x)] 'crisp-meta-x-wrapper)
212(define-key crisp-mode-map [(meta ?0)] (lambda () 214(define-key crisp-mode-map [(meta ?0)] (lambda ()
@@ -357,6 +359,9 @@ With ARG, turn CRiSP mode on if ARG is positive, off otherwise."
357 (not crisp-mode) 359 (not crisp-mode)
358 (> (prefix-numeric-value arg) 0))) 360 (> (prefix-numeric-value arg) 0)))
359 (when crisp-mode 361 (when crisp-mode
362 ;; Make menu entries show M-u or f14 in preference to C-x u.
363 (put 'undo :advertised-binding
364 (list* [?\M-u] [f14] (get 'undo :advertised-binding)))
360 ;; Force transient-mark-mode, so that the marking routines work as 365 ;; Force transient-mark-mode, so that the marking routines work as
361 ;; expected. If the user turns off transient mark mode, most 366 ;; expected. If the user turns off transient mark mode, most
362 ;; things will still work fine except the crisp-(copy|kill) 367 ;; things will still work fine except the crisp-(copy|kill)