[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/bindings.el
From: |
Richard M . Stallman |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/bindings.el |
Date: |
Tue, 28 Jun 2005 14:53:30 -0400 |
Index: emacs/lisp/bindings.el
diff -c emacs/lisp/bindings.el:1.148 emacs/lisp/bindings.el:1.149
*** emacs/lisp/bindings.el:1.148 Wed Jun 22 09:52:07 2005
--- emacs/lisp/bindings.el Tue Jun 28 18:53:30 2005
***************
*** 781,786 ****
--- 781,791 ----
(define-key global-map [insert] 'overwrite-mode)
(define-key global-map [C-insert] 'kill-ring-save)
(define-key global-map [S-insert] 'yank)
+ ;; `insertchar' is what term.c produces. Should we change term.c
+ ;; to produce `insert' instead?
+ (define-key global-map [insertchar] 'overwrite-mode)
+ (define-key global-map [C-insertchar] 'kill-ring-save)
+ (define-key global-map [S-insertchar] '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
***************
*** 791,797 ****
;; (define-key global-map [clearline] 'function-key-error)
(define-key global-map [insertline] 'open-line)
(define-key global-map [deleteline] 'kill-line)
- ;; (define-key global-map [insertchar] 'function-key-error)
(define-key global-map [deletechar] 'delete-char)
;; (define-key global-map [backtab] 'function-key-error)
;; (define-key global-map [f1] 'function-key-error)
--- 796,801 ----