Skip to content
Snippets Groups Projects
Commit 733345a1 authored by Martin Geisler's avatar Martin Geisler
Browse files

eol: fix win32text encode/decode filter names

parent 5ac9c903
No related branches found
No related tags found
No related merge requests found
......@@ -61,6 +61,11 @@
Such files are normally not touched under the assumption that they
have mixed EOLs on purpose.
The extension provides ``cleverencode:`` and ``cleverdecode:`` filters
like the deprecated win32text extension does. This means that you can
disable win32text and enable eol and your filters will still work. You
only need to these filters until you have prepared a ``.hgeol`` file.
See :hg:`help patterns` for more information about the glob patterns
used.
"""
......@@ -105,8 +110,8 @@
'to-crlf': tocrlf,
'is-binary': isbinary,
# The following provide backwards compatibility with win32text
'cleverencode': tolf,
'cleverdecode': tocrlf
'cleverencode:': tolf,
'cleverdecode:': tocrlf
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment