summaryrefslogtreecommitdiff
path: root/lisp/cedet/ede/makefile-edit.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/ede/makefile-edit.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/ede/makefile-edit.el')
-rw-r--r--lisp/cedet/ede/makefile-edit.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/ede/makefile-edit.el b/lisp/cedet/ede/makefile-edit.el
index 542ea703946..8541010ad29 100644
--- a/lisp/cedet/ede/makefile-edit.el
+++ b/lisp/cedet/ede/makefile-edit.el
@@ -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)