]> git.eshelyaron.com Git - emacs.git/commitdiff
2007-06-12 Michael Kifer <kifer@cs.stonybrook.edu>
authorMichael Kifer <kifer@cs.stonybrook.edu>
Tue, 12 Jun 2007 21:18:46 +0000 (21:18 +0000)
committerMichael Kifer <kifer@cs.stonybrook.edu>
Tue, 12 Jun 2007 21:18:46 +0000 (21:18 +0000)
* ediff-ptch.el (ediff-context-diff-label-regexp): spurious
parenthesis.

* ediff-init.el: doc strings.

lisp/ChangeLog
lisp/ediff-init.el
lisp/ediff-ptch.el

index 728dd0f8135af358a84f8f59bf4fcd1718c3e120..ac8e69d4c080aec7857335da9d8cf611c8ea16db 100644 (file)
@@ -1,3 +1,10 @@
+2007-06-12  Michael Kifer  <kifer@cs.stonybrook.edu>
+       
+       * ediff-ptch.el (ediff-context-diff-label-regexp): spurious
+       parenthesis.
+       
+       * ediff-init.el: doc strings.
+       
 2007-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * emacs-lisp/bytecomp.el (byte-compile-current-group): New var.
index d37096f9e89d4c7c93ee5dd867833d24d0e28597..8d05f2def09efefdd4f8fbb96906f020dd8fdc90 100644 (file)
@@ -102,7 +102,7 @@ that Ediff doesn't know about.")
        (boundp 'ediff-use-toolbar-p)
        ediff-use-toolbar-p))           ;Does the user want it ?
 
-;; Defines SYMBOL as an advertised local variable.
+;; Defines VAR as an advertised local variable.
 ;; Performs a defvar, then executes `make-variable-buffer-local' on
 ;; the variable.  Also sets the `permanent-local' property,
 ;; so that `kill-all-local-variables' (called by major-mode setting
@@ -110,6 +110,7 @@ that Ediff doesn't know about.")
 ;;
 ;; Plagiarised from `emerge-defvar-local' for XEmacs.
 (defmacro ediff-defvar-local (var value doc)
+  "Defines VAR as a local variable."
   (declare (indent defun))
   `(progn
      (defvar ,var ,value ,doc)
@@ -259,6 +260,7 @@ It needs to be killed when we quit the session.")
 ;; Doesn't save the point and mark.
 ;; This is `with-current-buffer' with the added test for live buffers."
 (defmacro ediff-with-current-buffer (buffer &rest body)
+  "Evaluates BODY in BUFFER."
   (declare (indent 1) (debug (form body)))
   `(if (ediff-buffer-live-p ,buffer)
        (save-current-buffer
index 5b345a8d4d670b4157dfd57a86ab89c2ef210e25..45fb1e2a3f6511659601685e33e1fa1680a87244 100644 (file)
@@ -139,7 +139,7 @@ patch.  So, don't change these variables, unless the default doesn't work."
          "^\\*\\*\\* \\([^\t]+\\)[^*]+[\t ]*\n--- \\([^\t]+\\)"
          "\\|"         ; GNU unified format diff 2-liner
          "^--- \\([^\t]+\\)[\t ]+.*\n\\+\\+\\+ \\([^\t]+\\)"
-         "\\)"))
+         "\\)")
   "*Regexp matching filename 2-liners at the start of each context diff.
 You probably don't want to change that, unless you are using an obscure patch
 program."