HarfBuzz text shaping engine http://harfbuzz.github.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
306 B

#!/usr/bin/python
from hb_test_tools import *
import sys, os
colors = Colors.Auto (sys.argv)
13 years ago
if len (sys.argv) != 3:
print "usage: %s [--color] file1 file2" % sys.argv[0]
sys.exit (1)
13 years ago
files = (FileHelpers.open_file_or_stdin (f) for f in sys.argv[1:3])
13 years ago
FancyDiffer.diff_files (*files, colors=colors)