summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStefan Merten <smerten@oekonux.de>2012-06-02 14:29:21 +0200
committerStefan Merten <smerten@oekonux.de>2012-06-02 14:29:21 +0200
commit4cf9b38dd572979c53bc5a7892c27b2a40a6f039 (patch)
tree2233939c00f4a7b82dad5128a18199766725019c /lisp
parent3726946669effb8c66c37fb5f9996178c9adfc80 (diff)
downloademacs-4cf9b38dd572979c53bc5a7892c27b2a40a6f039.tar.gz
emacs-4cf9b38dd572979c53bc5a7892c27b2a40a6f039.tar.bz2
emacs-4cf9b38dd572979c53bc5a7892c27b2a40a6f039.zip
(rst-mode-map): Fix meaning of C-M-a / C-M-e.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/textmodes/rst.el8
2 files changed, 5 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index eeb70bedd99..b973d09fc43 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -74,6 +74,7 @@
2012-06-02 Stefan Merten <smerten@oekonux.de>
* textmodes/rst.el: Always require `cl'.
+ (rst-mode-map): Fix meaning of C-M-a / C-M-e.
2012-06-02 Chong Yidong <cyd@gnu.org>
diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el
index 52c97ff8789..6066d337a0f 100644
--- a/lisp/textmodes/rst.el
+++ b/lisp/textmodes/rst.el
@@ -123,7 +123,7 @@ and before TAIL-RE and DELIM-RE in VAR or DEFAULT for no match."
;; Use CVSHeader to really get information from CVS and not other version
;; control systems.
(defconst rst-cvs-header
- "$CVSHeader: sm/rst_el/rst.el,v 1.257.2.10 2012-06-02 09:38:40 stefan Exp $")
+ "$CVSHeader: sm/rst_el/rst.el,v 1.257.2.11 2012-06-02 12:20:41 stefan Exp $")
(defconst rst-cvs-rev
(rst-extract-version "\\$" "CVSHeader: \\S + " "[0-9]+\\(?:\\.[0-9]+\\)+"
" .*" rst-cvs-header "0.0")
@@ -546,11 +546,11 @@ well but give an additional message."
(rst-define-key map [?\C-\M-h] 'rst-mark-section
;; Same as mark-defun sgml-mark-current-element.
[?\C-c ?\C-m])
- ;; Move forward/backward between section titles.
- (rst-define-key map [?\C-\M-a] 'rst-forward-section
+ ;; Move backward/forward between section titles.
+ (rst-define-key map [?\C-\M-a] 'rst-backward-section
;; Same as beginning-of-defun.
[?\C-c ?\C-n])
- (rst-define-key map [?\C-\M-e] 'rst-backward-section
+ (rst-define-key map [?\C-\M-e] 'rst-forward-section
;; Same as end-of-defun.
[?\C-c ?\C-p])