]> code.delx.au - gnu-emacs/commitdiff
(reveal-mode-map): Don't override C-a and C-e.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 29 Mar 2005 14:13:15 +0000 (14:13 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 29 Mar 2005 14:13:15 +0000 (14:13 +0000)
lisp/ChangeLog
lisp/reveal.el

index 54629d639921f746d8bc2d14b9a2bbe71c1cc05d..47d3fb33da346b2e75a2c944f513cfa36e0d5e0c 100644 (file)
@@ -1,3 +1,9 @@
+2005-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * reveal.el (reveal-mode-map): Don't override C-a and C-e.
+
+       * progmodes/python.el (python-preoutput-filter): Fix last change.
+
 2005-03-29  Lute Kamstra  <lute@gnu.org>
 
        * emacs-lisp/debug.el (debug-on-entry): Handle autoloaded
        ps-print-translation-table.
        (ps-mule-begin-job): Call find-charset-region/string with
        ps-print-translation-table.
-       (ps-mule-printable-p): Return t if CHARSET is ascii or
-       latin-iso8859-1.
+       (ps-mule-printable-p): Return t if CHARSET is ascii or latin-iso8859-1.
 
        * ps-print.el (ps-print-translation-table): New variable.
-       (ps-plot-region): Translate characters by
-       ps-print-translation-table.
+       (ps-plot-region): Translate characters by ps-print-translation-table.
 
 2005-03-29  Juri Linkov  <juri@jurta.org>
 
        * international/mule.el (auto-coding-alist): Associate non-ascii
        image filename extensions with `no-conversion'.
 
+2005-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * international/iso-acc.el:
+       * obsolete/iso-acc.el: Move iso-acc to the obsolete subdir.
+
 2005-03-26  Luc Teirlinck  <teirllm@auburn.edu>
 
        * textmodes/sgml-mode.el (html-mode): Doc update.
index eb6b4519f38528e228a7b1373fb326ecb618d7cd..787c4d20791c6da16336d667175bc3b7929e4dd0 100644 (file)
   (let ((map (make-sparse-keymap)))
     ;; Override the default move-beginning-of-line and move-end-of-line
     ;; which skips valuable invisible text.
-    (define-key map [?\C-a] 'beginning-of-line)
-    (define-key map [?\C-e] 'end-of-line)
+    (define-key map [remap move-beginning-of-line] 'beginning-of-line)
+    (define-key map [remap move-end-of-line] 'end-of-line)
     map))
 
 ;;;###autoload