Mercurial > emacs
comparison lisp/simple.el @ 105009:b520d55cdd72
* simple.el: Add mapping for backspace/delete/clear/tab/escape/return
to function-key-map, and give them ascii-character property.
* term/x-win.el (x-alternatives-map):
* term/ns-win.el (ns-alternatives-map):
* term/internal.el (msdos-key-remapping-map):
* w32-fns.el (x-alternatives-map): Remove redundant mappings.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 14 Sep 2009 01:22:42 +0000 |
parents | f0794252d960 |
children | b24c3613ac28 |
comparison
equal
deleted
inserted
replaced
105008:b9b9c3b2718d | 105009:b520d55cdd72 |
---|---|
6102 (kp-add ?+) | 6102 (kp-add ?+) |
6103 (kp-separator ?,) | 6103 (kp-separator ?,) |
6104 (kp-subtract ?-) | 6104 (kp-subtract ?-) |
6105 (kp-decimal ?.) | 6105 (kp-decimal ?.) |
6106 (kp-divide ?/) | 6106 (kp-divide ?/) |
6107 (kp-equal ?=))) | 6107 (kp-equal ?=) |
6108 ;; Do the same for various keys that are represented as symbols under | |
6109 ;; GUIs but naturally correspond to characters. | |
6110 (backspace 127) | |
6111 (delete 127) | |
6112 (tab ?\t) | |
6113 (linefeed ?\n) | |
6114 (clear ?\C-l) | |
6115 (return ?\C-m) | |
6116 (escape ?\e) | |
6117 )) | |
6108 | 6118 |
6109 ;;;; | 6119 ;;;; |
6110 ;;;; forking a twin copy of a buffer. | 6120 ;;;; forking a twin copy of a buffer. |
6111 ;;;; | 6121 ;;;; |
6112 | 6122 |