# HG changeset patch # User Juanma Barranquero # Date 1254623142 0 # Node ID 02f737c16cc4a4c3d2c4a78f78fae4f0ef98cfff # Parent 098f8a47a308eda72278911a6f2e2448f233b51a * 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. diff -r 098f8a47a308 -r 02f737c16cc4 lisp/ChangeLog --- a/lisp/ChangeLog Sun Oct 04 02:11:57 2009 +0000 +++ b/lisp/ChangeLog Sun Oct 04 02:25:42 2009 +0000 @@ -1,3 +1,10 @@ +2009-10-04 Juanma Barranquero + + * 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. + 2009-10-04 Juanma Barranquero * files-x.el (modify-dir-local-variable) diff -r 098f8a47a308 -r 02f737c16cc4 lisp/cedet/ede/makefile-edit.el --- a/lisp/cedet/ede/makefile-edit.el Sun Oct 04 02:11:57 2009 +0000 +++ b/lisp/cedet/ede/makefile-edit.el Sun Oct 04 02:25:42 2009 +0000 @@ -42,7 +42,7 @@ ;;; Code: (defun makefile-beginning-of-command () - "Move the beginning of the current command." + "Move to the beginning of the current command." (interactive) (if (save-excursion (forward-line -1) @@ -57,7 +57,7 @@ (forward-line 1))) (defun makefile-end-of-command () - "Move the beginning of the current command." + "Move to the end of the current command." (interactive) (end-of-line) (while (and (makefile-line-continued-p) diff -r 098f8a47a308 -r 02f737c16cc4 lisp/cedet/srecode/srt-mode.el --- a/lisp/cedet/srecode/srt-mode.el Sun Oct 04 02:11:57 2009 +0000 +++ b/lisp/cedet/srecode/srt-mode.el Sun Oct 04 02:25:42 2009 +0000 @@ -375,7 +375,7 @@ (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 @@ (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))))