]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't bind stop.
authorDave Love <fx@gnu.org>
Fri, 10 Oct 2003 18:09:52 +0000 (18:09 +0000)
committerDave Love <fx@gnu.org>
Fri, 10 Oct 2003 18:09:52 +0000 (18:09 +0000)
lisp/ChangeLog
lisp/bindings.el

index 95c1bfec90b5aaad079f0220bfb896228e03f1d9..187d2ba59bf08eee47f8830f73c658b9543815f4 100644 (file)
@@ -1,3 +1,7 @@
+2003-10-10  Dave Love  <fx@gnu.org>
+
+       * bindings.el: Don't bind stop.
+
 2003-10-08  Miles Bader  <miles@gnu.org>
 
        * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video
index 04353e9c7ec2a1f9f5099f14bb112f0c5c44cd35..ab5bb30699e2fa4bde668c3332f5870a8e56d4e0 100644 (file)
@@ -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)