##// END OF EJS Templates
eol: fix win32text encode/decode filter names
Martin Geisler -
r12979:733345a1 default
parent child Browse files
Show More
@@ -61,6 +61,11 b' behavior. There are two settings:'
61 Such files are normally not touched under the assumption that they
61 Such files are normally not touched under the assumption that they
62 have mixed EOLs on purpose.
62 have mixed EOLs on purpose.
63
63
64 The extension provides ``cleverencode:`` and ``cleverdecode:`` filters
65 like the deprecated win32text extension does. This means that you can
66 disable win32text and enable eol and your filters will still work. You
67 only need to these filters until you have prepared a ``.hgeol`` file.
68
64 See :hg:`help patterns` for more information about the glob patterns
69 See :hg:`help patterns` for more information about the glob patterns
65 used.
70 used.
66 """
71 """
@@ -105,8 +110,8 b' filters = {'
105 'to-crlf': tocrlf,
110 'to-crlf': tocrlf,
106 'is-binary': isbinary,
111 'is-binary': isbinary,
107 # The following provide backwards compatibility with win32text
112 # The following provide backwards compatibility with win32text
108 'cleverencode': tolf,
113 'cleverencode:': tolf,
109 'cleverdecode': tocrlf
114 'cleverdecode:': tocrlf
110 }
115 }
111
116
112
117
General Comments 0
You need to be logged in to leave comments. Login now