# HG changeset patch # User Dave Love # Date 1065457552 0 # Node ID cbc9675be6b0f0dc385ab2d05419f140085171cd # Parent ae2b0c69ccfba71c814bcc56d286e1663a2131bb (completion-ignored-extensions): Remove .log. (global-map): Add again, open, stop keys. diff -r ae2b0c69ccfb -r cbc9675be6b0 lisp/bindings.el --- 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)