changeset 52815:0ddba5352cdf

Don't bind stop.
author Dave Love <fx@gnu.org>
date Fri, 10 Oct 2003 18:09:38 +0000
parents df5527dde8fb
children a1cd897c122c
files lisp/bindings.el
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/bindings.el	Fri Oct 10 03:02:39 2003 +0000
+++ b/lisp/bindings.el	Fri Oct 10 18:09:38 2003 +0000
@@ -780,7 +780,9 @@
 (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)