Mercurial > emacs
changeset 52775:cbc9675be6b0
(completion-ignored-extensions): Remove .log.
(global-map): Add again, open, stop keys.
author | Dave Love <fx@gnu.org> |
---|---|
date | Mon, 06 Oct 2003 16:25:52 +0000 |
parents | ae2b0c69ccfb |
children | e1d4f8d5156b |
files | lisp/bindings.el |
diffstat | 1 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/bindings.el Mon Oct 06 16:17:52 2003 +0000 +++ b/lisp/bindings.el Mon Oct 06 16:25:52 2003 +0000 @@ -518,7 +518,9 @@ ;; 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 @@ (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)