]> git.eshelyaron.com Git - emacs.git/commitdiff
(terminal-init-rxvt): Add entry for [end].
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 19 Sep 2005 17:45:31 +0000 (17:45 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 19 Sep 2005 17:45:31 +0000 (17:45 +0000)
lisp/ChangeLog
lisp/term/rxvt.el

index 66167330a07126a003d4f36155e3077249cb6075..5b4e1c8cbcaf9730788b148d1977c296a7291f6b 100644 (file)
@@ -1,3 +1,7 @@
+2005-09-19  Emanuele Giaquinta  <emanuele.giaquinta@gmail.com> (tiny change)
+
+       * term/rxvt.el (terminal-init-rxvt): Add entry for [end].
+
 2005-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * calendar/calendar.el (mark-visible-calendar-date): Save excursion.
index 1b4e5a6f61f58a77cbed4f7061f507edfd94dba1..ee0e31abdba5813853bc354911b5502ec7d0ba40 100644 (file)
@@ -33,7 +33,7 @@
   ;; a PC-style keyboard these keys correspond to
   ;; MODIFIER-FUNCTION_KEY, where modifier is S-, C-, C-S-.  The
   ;; code here subsitutes the corresponding defintions in
-  ;; function-key-map. This substitution is needed because if a key
+  ;; function-key-map.  This substitution is needed because if a key
   ;; definition if found in function-key-map, there are no further
   ;; lookups in other keymaps.
   (substitute-key-definition [f11] [S-f1] function-key-map)
     (define-key map "\e[B" [down])
     (define-key map "\e[C" [right])
     (define-key map "\e[D" [left])
-    (define-key map "\e[7~" [home])
     (define-key map "\e[2~" [insert])
     (define-key map "\e[3~" [delete])
     (define-key map "\e[4~" [select])
     (define-key map "\e[5~" [prior])
     (define-key map "\e[6~" [next])
+    (define-key map "\e[7~" [home])
+    (define-key map "\e[8~" [end])
     (define-key map "\e[11~" [f1])
     (define-key map "\e[12~" [f2])
     (define-key map "\e[13~" [f3])
@@ -236,5 +237,5 @@ for the currently selected frame."
          (setq default-frame-background-mode 'dark)))
     (frame-set-background-mode (selected-frame))))
 
-;;; arch-tag: 20cf2fb6-6318-4bab-9dbf-1d15048f2257
+;; arch-tag: 20cf2fb6-6318-4bab-9dbf-1d15048f2257
 ;;; rxvt.el ends here