Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8d194e3e
Commit
8d194e3e
authored
Mar 29, 2005
by
Stefan Monnier
Browse files
(reveal-mode-map): Don't override C-a and C-e.
parent
9f3f6a18
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
6 deletions
+15
-6
lisp/ChangeLog
lisp/ChangeLog
+13
-4
lisp/reveal.el
lisp/reveal.el
+2
-2
No files found.
lisp/ChangeLog
View file @
8d194e3e
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
...
...
@@ -17,12 +23,10 @@
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>
...
...
@@ -89,6 +93,11 @@
* 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.
...
...
lisp/reveal.el
View file @
8d194e3e
...
...
@@ -163,8 +163,8 @@
(
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-lin
e]
'end-of-line
)
map
))
;;;###autoload
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment