summaryrefslogtreecommitdiff
path: root/lisp/bindings.el
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2003-10-10 18:09:38 +0000
committerDave Love <fx@gnu.org>2003-10-10 18:09:38 +0000
commit1aedcd08623c38b5bc1bfcdc1dadff34bbff6c6a (patch)
tree1612f8024e4927bcfc4e5669235a6fa9221b7df6 /lisp/bindings.el
parent897072a2560567d0b68497de45182a8bf969ca40 (diff)
downloademacs-1aedcd08623c38b5bc1bfcdc1dadff34bbff6c6a.tar.gz
Don't bind stop.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r--lisp/bindings.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 04353e9c7ec..ab5bb30699e 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -780,7 +780,9 @@ language you are using."
(define-key global-map [redo] 'repeat-complex-command)
(define-key global-map [again] 'repeat-complex-command) ; Sun keyboard
(define-key global-map [open] 'find-file) ; Sun
-(define-key global-map [stop] 'keyboard-quit) ; Sun
+;; The following wouldn't work to interrupt running code since C-g is
+;; treated specially in the event loop.
+;; (define-key global-map [stop] 'keyboard-quit) ; Sun
;; (define-key global-map [clearline] 'function-key-error)
(define-key global-map [insertline] 'open-line)
(define-key global-map [deleteline] 'kill-line)