shithub: libvpx

Download patch

ref: ec285c48d90d139cbd8a6d0fc6424dbf843e55e9
parent: c31cf0d647fe967649c75f31ebbac5882037075c
parent: f498d92ff4686c2b1bfba87b3e44987ef87a66e7
author: Johann <johannkoenig@google.com>
date: Tue Feb 4 10:56:17 EST 2014

Merge "Ignore missing newline message"

--- a/tools/diff.py
+++ b/tools/diff.py
@@ -56,6 +56,9 @@
         elif line[0] == " ":
             self.left.Append(line)
             self.right.Append(line)
+        elif line[0] == "\\":
+            # Ignore newline messages from git diff.
+            pass
         else:
             assert False, ("Unrecognized character at start of diff line "
                            "%r" % line[0])
--