diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-02-25 14:32:24 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-02-25 14:32:24 (GMT) |
commit | 59db1f3df635463d0cb3efa5ef3283e72ef4ed60 (patch) | |
tree | 3d552e64a9cebd3422c7405f52f8e7311e08867f /.hgeol | |
parent | 71219dad3e89a2f47686b4facef368980abe1f2d (diff) | |
download | cpython-59db1f3df635463d0cb3efa5ef3283e72ef4ed60.zip cpython-59db1f3df635463d0cb3efa5ef3283e72ef4ed60.tar.gz cpython-59db1f3df635463d0cb3efa5ef3283e72ef4ed60.tar.bz2 |
Fix .hgeol
Diffstat (limited to '.hgeol')
-rw-r--r-- | .hgeol | 27 |
1 files changed, 15 insertions, 12 deletions
@@ -1,16 +1,13 @@ [patterns] -** = native -**.bat = CRLF -**.def = CRLF -**.dsp = CRLF -**.dsw = CRLF -**.mak = CRLF -**.mk = CRLF -**.rc = CRLF -**.sln = CRLF -**.vcproj = CRLF -**.vsprops = CRLF +# Non human-editable files are binary + +**.dsp = BIN +**.dsw = BIN +**.mk = BIN +**.sln = BIN +**.vcproj = BIN +**.vsprops = BIN **.aif = BIN **.au = BIN @@ -31,6 +28,12 @@ Lib/email/test/data/msg_26.txt = BIN Lib/test/sndhdrdata/sndhdr.* = BIN +Lib/test/decimaltestdata/*.decTest = BIN + +# All other files (which presumably are human-editable) are "native". +# This must be the last rule! + +** = native [repository] -native = LF
\ No newline at end of file +native = LF |