*** empty log message ***
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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))))
|
||||
|
||||
Reference in New Issue
Block a user