aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2009-10-04 02:25:42 +0000
committerJuanma Barranquero2009-10-04 02:25:42 +0000
commit040759526fbb4f10bba6e3f8c243a35bdb043032 (patch)
treeccc11e5931a394fbe80dcd629f5ee2bc747b1e5b
parentb4dc7d98882432c9c14c0edb91021bb4868f185e (diff)
downloademacs-040759526fbb4f10bba6e3f8c243a35bdb043032.tar.gz
emacs-040759526fbb4f10bba6e3f8c243a35bdb043032.zip
* 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.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/cedet/ede/makefile-edit.el4
-rw-r--r--lisp/cedet/srecode/srt-mode.el6
3 files changed, 12 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index e9a8abb1f9f..97962595a99 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,12 @@
12009-10-04 Juanma Barranquero <lekktu@gmail.com> 12009-10-04 Juanma Barranquero <lekktu@gmail.com>
2 2
3 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
4 (makefile-end-of-command):
5 * cedet/srecode/srt-mode.el (semantic-beginning-of-context)
6 (semantic-end-of-context): Fix previous change. Doc fixes.
7
82009-10-04 Juanma Barranquero <lekktu@gmail.com>
9
3 * files-x.el (modify-dir-local-variable) 10 * files-x.el (modify-dir-local-variable)
4 (copy-dir-locals-to-file-locals-prop-line): 11 (copy-dir-locals-to-file-locals-prop-line):
5 * cedet/ede/makefile-edit.el (makefile-beginning-of-command) 12 * cedet/ede/makefile-edit.el (makefile-beginning-of-command)
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 @@
42;;; Code: 42;;; Code:
43 43
44(defun makefile-beginning-of-command () 44(defun makefile-beginning-of-command ()
45 "Move the beginning of the current command." 45 "Move to the beginning of the current command."
46 (interactive) 46 (interactive)
47 (if (save-excursion 47 (if (save-excursion
48 (forward-line -1) 48 (forward-line -1)
@@ -57,7 +57,7 @@
57 (forward-line 1))) 57 (forward-line 1)))
58 58
59(defun makefile-end-of-command () 59(defun makefile-end-of-command ()
60 "Move the beginning of the current command." 60 "Move to the end of the current command."
61 (interactive) 61 (interactive)
62 (end-of-line) 62 (end-of-line)
63 (while (and (makefile-line-continued-p) 63 (while (and (makefile-line-continued-p)
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."
375(define-mode-local-override semantic-beginning-of-context 375(define-mode-local-override semantic-beginning-of-context
376 srecode-template-mode (&optional point) 376 srecode-template-mode (&optional point)
377 "Move to the beginning of the current context. 377 "Move to the beginning of the current context.
378Moves the beginning of one named section." 378Moves to the beginning of one named section."
379 (if (semantic-up-context point) 379 (if (semantic-up-context point)
380 t 380 t
381 (let ((es (regexp-quote (srecode-template-get-escape-start))) 381 (let ((es (regexp-quote (srecode-template-get-escape-start)))
@@ -386,8 +386,8 @@ Moves the beginning of one named section."
386 386
387(define-mode-local-override semantic-end-of-context 387(define-mode-local-override semantic-end-of-context
388 srecode-template-mode (&optional point) 388 srecode-template-mode (&optional point)
389 "Move to the beginning of the current context. 389 "Move to the end of the current context.
390Moves the beginning of one named section." 390Moves to the end of one named section."
391 (let ((name (srecode-up-context-get-name point)) 391 (let ((name (srecode-up-context-get-name point))
392 (tag (semantic-current-tag)) 392 (tag (semantic-current-tag))
393 (es (regexp-quote (srecode-template-get-escape-start)))) 393 (es (regexp-quote (srecode-template-get-escape-start))))