diff options
author | Dave Love <fx@gnu.org> | 2003-10-06 16:25:52 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2003-10-06 16:25:52 +0000 |
commit | 9556530476d07c11806e6c131b02e911a4c9bc1d (patch) | |
tree | dd042396876a95365556e76009b2939131de4f26 /lisp/bindings.el | |
parent | dc8fcfb3b0f4e1bdea8049096b8f8ed662a71337 (diff) | |
download | emacs-9556530476d07c11806e6c131b02e911a4c9bc1d.tar.gz |
(completion-ignored-extensions): Remove .log.
(global-map): Add again, open, stop keys.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r-- | lisp/bindings.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index b6e02542a53..04353e9c7ec 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -518,7 +518,9 @@ is okay. See `mode-line-format'.") ;; Gettext ".gmo" ".mo" ;; Texinfo-related - ".toc" ".log" ".aux" + ;; This used to contain .log, but that's commonly used for log + ;; files you do want to see, not just TeX stuff. -- fx + ".toc" ".aux" ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"))) @@ -776,6 +778,9 @@ language you are using." (define-key global-map [S-insert] 'yank) (define-key global-map [undo] 'undo) (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 ;; (define-key global-map [clearline] 'function-key-error) (define-key global-map [insertline] 'open-line) (define-key global-map [deleteline] 'kill-line) |