aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2002-05-25 00:06:56 +0000
committerKim F. Storm <[email protected]>2002-05-25 00:06:56 +0000
commit20023b9cb448aa6e766a0dc73ab08d1aecf3cbf5 (patch)
treeff672ea8090296d33b237513bcfd1413485cda9d /lisp
parentfeb51e916d64ccaa4e5c044a737ce9587eb2c440 (diff)
(cua--self-insert-char-p): New function.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emulation/cua-base.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/emulation/cua-base.el b/lisp/emulation/cua-base.el
index 5f6e966647..cfcc333820 100644
--- a/lisp/emulation/cua-base.el
+++ b/lisp/emulation/cua-base.el
@@ -954,6 +954,13 @@ Extra commands should be added to `cua-user-movement-commands'")
(unless (listp key) (setq key (list key)))
(define-key map (vector (cons (if cua-use-hyper-key 'hyper 'meta) key)) fct))
+(defun cua--self-insert-char-p (def)
+ ;; Return DEF if current key sequence is self-inserting in
+ ;; global-map.
+ (if (memq (global-key-binding (this-single-command-keys))
+ '(self-insert-command self-insert-iso))
+ def nil))
+
(defvar cua-global-keymap (make-sparse-keymap)
"Global keymap for cua-mode; users may add to this keymap.")