emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/lisp ChangeLog cedet/ede/makefile-edit.el...


From: Juanma Barranquero
Subject: [Emacs-diffs] emacs/lisp ChangeLog cedet/ede/makefile-edit.el...
Date: Sun, 04 Oct 2009 02:25:46 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Juanma Barranquero <lektu>      09/10/04 02:25:45

Modified files:
        lisp           : ChangeLog 
        lisp/cedet/ede : makefile-edit.el 
        lisp/cedet/srecode: srt-mode.el 

Log message:
        * 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.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/ChangeLog?cvsroot=emacs&r1=1.16345&r2=1.16346
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/cedet/ede/makefile-edit.el?cvsroot=emacs&r1=1.7&r2=1.8
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/cedet/srecode/srt-mode.el?cvsroot=emacs&r1=1.6&r2=1.7

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/ChangeLog,v
retrieving revision 1.16345
retrieving revision 1.16346
diff -u -b -r1.16345 -r1.16346
--- ChangeLog   4 Oct 2009 01:44:39 -0000       1.16345
+++ ChangeLog   4 Oct 2009 02:25:42 -0000       1.16346
@@ -1,5 +1,12 @@
 2009-10-04  Juanma Barranquero  <address@hidden>
 
+       * 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  <address@hidden>
+
        * files-x.el (modify-dir-local-variable)
        (copy-dir-locals-to-file-locals-prop-line):
        * cedet/ede/makefile-edit.el (makefile-beginning-of-command)

Index: cedet/ede/makefile-edit.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/cedet/ede/makefile-edit.el,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- cedet/ede/makefile-edit.el  4 Oct 2009 01:44:42 -0000       1.7
+++ cedet/ede/makefile-edit.el  4 Oct 2009 02:25:45 -0000       1.8
@@ -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)

Index: cedet/srecode/srt-mode.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/cedet/srecode/srt-mode.el,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -b -r1.6 -r1.7
--- cedet/srecode/srt-mode.el   4 Oct 2009 01:44:43 -0000       1.6
+++ cedet/srecode/srt-mode.el   4 Oct 2009 02:25:45 -0000       1.7
@@ -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))))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]