diff options
| author | Dave Love | 2003-10-10 18:09:52 +0000 |
|---|---|---|
| committer | Dave Love | 2003-10-10 18:09:52 +0000 |
| commit | aa8b81460143669c1f8a9f56eceba7dd0db99781 (patch) | |
| tree | 64acb08aa0e65542d7d4a5002e49a85c22479247 | |
| parent | fd423b793bcfedc3926e45c0a9e8f6ffc44ee370 (diff) | |
| download | emacs-aa8b81460143669c1f8a9f56eceba7dd0db99781.tar.gz emacs-aa8b81460143669c1f8a9f56eceba7dd0db99781.zip | |
Don't bind stop.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/bindings.el | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 95c1bfec90b..187d2ba59bf 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2003-10-10 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * bindings.el: Don't bind stop. | ||
| 4 | |||
| 1 | 2003-10-08 Miles Bader <miles@gnu.org> | 5 | 2003-10-08 Miles Bader <miles@gnu.org> |
| 2 | 6 | ||
| 3 | * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video | 7 | * gdb-ui.el (gdb-info-frames-custom): Use proper :inverse-video |
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." | |||
| 780 | (define-key global-map [redo] 'repeat-complex-command) | 780 | (define-key global-map [redo] 'repeat-complex-command) |
| 781 | (define-key global-map [again] 'repeat-complex-command) ; Sun keyboard | 781 | (define-key global-map [again] 'repeat-complex-command) ; Sun keyboard |
| 782 | (define-key global-map [open] 'find-file) ; Sun | 782 | (define-key global-map [open] 'find-file) ; Sun |
| 783 | (define-key global-map [stop] 'keyboard-quit) ; Sun | 783 | ;; The following wouldn't work to interrupt running code since C-g is |
| 784 | ;; treated specially in the event loop. | ||
| 785 | ;; (define-key global-map [stop] 'keyboard-quit) ; Sun | ||
| 784 | ;; (define-key global-map [clearline] 'function-key-error) | 786 | ;; (define-key global-map [clearline] 'function-key-error) |
| 785 | (define-key global-map [insertline] 'open-line) | 787 | (define-key global-map [insertline] 'open-line) |
| 786 | (define-key global-map [deleteline] 'kill-line) | 788 | (define-key global-map [deleteline] 'kill-line) |