2008-04-04 Dan Nicolaescu <dann@ics.uci.edu>
+ * diff-mode.el (diff-file-junk-re): Recognize the git format for
+ new files.
+ (diff-mode): Set beginning-of-defun-function and
+ end-of-defun-function.
+
* vc-bzr.el (vc-bzr-state): Use when instead of if.
* vc.el (vc-default-status-fileinfo-extra): New function.
(diff-end-of-hunk)
(kill-region start (point)))))
-(defconst diff-file-junk-re "diff \\|index ") ; "index " is output by git-diff.
+;; "index " and "new file mode" are output by git-diff.
+(defconst diff-file-junk-re "diff \\|index \\|new file mode")
(defun diff-beginning-of-file-and-junk ()
"Go to the beginning of file-related diff-info.
;; compile support
(set (make-local-variable 'next-error-function) 'diff-next-error)
+ (set (make-local-variable 'beginning-of-defun-function)
+ 'diff-beginning-of-file-and-junk)
+ (set (make-local-variable 'end-of-defun-function)
+ 'diff-end-of-file)
+
(setq buffer-read-only diff-default-read-only)
;; setup change hooks
(if (not diff-update-on-the-fly)