summaryrefslogtreecommitdiff
path: root/lisp/cedet/srecode/srt-mode.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2009-10-04 02:25:42 +0000
committerJuanma Barranquero <lekktu@gmail.com>2009-10-04 02:25:42 +0000
commit040759526fbb4f10bba6e3f8c243a35bdb043032 (patch)
treeccc11e5931a394fbe80dcd629f5ee2bc747b1e5b /lisp/cedet/srecode/srt-mode.el
parentb4dc7d98882432c9c14c0edb91021bb4868f185e (diff)
downloademacs-040759526fbb4f10bba6e3f8c243a35bdb043032.tar.gz
* cedet/ede/makefile-edit.el (makefile-beginning-of-command)
(makefile-end-of-command): * cedet/srecode/srt-mode.el (semantic-beginning-of-context) (semantic-end-of-context): Fix previous change. Doc fixes.
Diffstat (limited to 'lisp/cedet/srecode/srt-mode.el')
-rw-r--r--lisp/cedet/srecode/srt-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cedet/srecode/srt-mode.el b/lisp/cedet/srecode/srt-mode.el
index 49d77a35ddd..d7e4b7b3ff4 100644
--- a/lisp/cedet/srecode/srt-mode.el
+++ b/lisp/cedet/srecode/srt-mode.el
@@ -375,7 +375,7 @@ Moves out one named section."
(define-mode-local-override semantic-beginning-of-context
srecode-template-mode (&optional point)
"Move to the beginning of the current context.
-Moves the beginning of one named section."
+Moves to the beginning of one named section."
(if (semantic-up-context point)
t
(let ((es (regexp-quote (srecode-template-get-escape-start)))
@@ -386,8 +386,8 @@ Moves the beginning of one named section."
(define-mode-local-override semantic-end-of-context
srecode-template-mode (&optional point)
- "Move to the beginning of the current context.
-Moves the beginning of one named section."
+ "Move to the end of the current context.
+Moves to the end of one named section."
(let ((name (srecode-up-context-get-name point))
(tag (semantic-current-tag))
(es (regexp-quote (srecode-template-get-escape-start))))