# HG changeset patch # User Stefan Monnier # Date 1191903989 0 # Node ID 9befff1bc946db29494ea1f913275ae807d2a0fe # Parent ee30e57a2bd806a055b7df9f53ea417ad82ad09b (x-alternatives-map): New var. (x-setup-function-keys): Use it. diff -r ee30e57a2bd8 -r 9befff1bc946 lisp/ChangeLog --- a/lisp/ChangeLog Tue Oct 09 04:25:14 2007 +0000 +++ b/lisp/ChangeLog Tue Oct 09 04:26:29 2007 +0000 @@ -1,5 +1,8 @@ 2007-10-09 Stefan Monnier + * term/x-win.el (x-alternatives-map): New var. + (x-setup-function-keys): Use it. + * help-fns.el (describe-variable): Slightly change the layout of meta-info to separate it better from the docstring. Standardize insertion of extra empty lines in various circumstances. diff -r ee30e57a2bd8 -r 9befff1bc946 lisp/term/x-win.el --- a/lisp/term/x-win.el Tue Oct 09 04:25:14 2007 +0000 +++ b/lisp/term/x-win.el Tue Oct 09 04:26:29 2007 +0000 @@ -1177,6 +1177,28 @@ ;;;; Function keys +(defvar x-alternatives-map + (let ((map (make-sparse-keymap))) + ;; Map certain keypad keys into ASCII characters that people usually expect. + (define-key map [backspace] [127]) + (define-key map [delete] [127]) + (define-key map [tab] [?\t]) + (define-key map [linefeed] [?\n]) + (define-key map [clear] [?\C-l]) + (define-key map [return] [?\C-m]) + (define-key map [escape] [?\e]) + (define-key map [M-backspace] [?\M-\d]) + (define-key map [M-delete] [?\M-\d]) + (define-key map [M-tab] [?\M-\t]) + (define-key map [M-linefeed] [?\M-\n]) + (define-key map [M-clear] [?\M-\C-l]) + (define-key map [M-return] [?\M-\C-m]) + (define-key map [M-escape] [?\M-\e]) + (define-key map [iso-lefttab] [backtab]) + (define-key map [S-iso-lefttab] [backtab])) + map) + "Keymap of possible alternative meanings for some keys.") + (defun x-setup-function-keys (frame) "Set up `function-key-map' on FRAME for the X window system." ;; Don't do this twice on the same display, or it would break @@ -1184,22 +1206,9 @@ (unless (terminal-parameter frame 'x-setup-function-keys) ;; Map certain keypad keys into ASCII characters that people usually expect. (with-selected-frame frame - (define-key local-function-key-map [backspace] [127]) - (define-key local-function-key-map [delete] [127]) - (define-key local-function-key-map [tab] [?\t]) - (define-key local-function-key-map [linefeed] [?\n]) - (define-key local-function-key-map [clear] [?\C-l]) - (define-key local-function-key-map [return] [?\C-m]) - (define-key local-function-key-map [escape] [?\e]) - (define-key local-function-key-map [M-backspace] [?\M-\d]) - (define-key local-function-key-map [M-delete] [?\M-\d]) - (define-key local-function-key-map [M-tab] [?\M-\t]) - (define-key local-function-key-map [M-linefeed] [?\M-\n]) - (define-key local-function-key-map [M-clear] [?\M-\C-l]) - (define-key local-function-key-map [M-return] [?\M-\C-m]) - (define-key local-function-key-map [M-escape] [?\M-\e]) - (define-key local-function-key-map [iso-lefttab] [backtab]) - (define-key local-function-key-map [S-iso-lefttab] [backtab])) + (let ((map (copy-keymap x-alternatives-map))) + (set-keymap-parent map (keymap-parent local-function-key-map)) + (set-keymap-parent local-function-key-map map))) (set-terminal-parameter frame 'x-setup-function-keys t))) ;; These tell read-char how to convert