*** empty log message ***

This commit is contained in:
Stefan Monnier
2007-02-07 17:08:36 +00:00
parent ed3e1544d4
commit a3ee90d98c
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2007-02-07 Per Cederqvist <ceder@lysator.liu.se> (tiny change)
* diff-mode.el (diff-sanity-check-hunk): Don't reject the hunk
just because the diff was produced using "-p" (--show-c-function).
2007-02-07 Juanma Barranquero <lekktu@gmail.com>
* faces.el (frame-set-background-mode): Use `color-values' and

View File

@@ -1115,7 +1115,7 @@ Only works for unified diffs."
;; A context diff.
((eq (char-after) ?*)
(if (not (looking-at "\\*\\{15\\}\n\\*\\*\\* \\([0-9]+\\),\\([0-9]+\\) \\*\\*\\*\\*$"))
(if (not (looking-at "\\*\\{15\\}\n\\*\\*\\* \\([0-9]+\\),\\([0-9]+\\) \\*\\*\\*\\*"))
(error "Unrecognized context diff first hunk header format")
(forward-line 2)
(diff-sanity-check-context-hunk-half
@@ -1131,7 +1131,7 @@ Only works for unified diffs."
;; A unified diff.
((eq (char-after) ?@)
(if (not (looking-at
"@@ -[0-9]+,\\([0-9]+\\) \\+[0-9]+,\\([0-9]+\\) @@$"))
"@@ -[0-9]+,\\([0-9]+\\) \\+[0-9]+,\\([0-9]+\\) @@"))
(error "Unrecognized unified diff hunk header format")
(let ((before (string-to-number (match-string 1)))
(after (string-to-number (match-string 2))))