##// END OF EJS Templates
check-code: fix check for trailing whitespace on empty lines...
check-code: fix check for trailing whitespace on empty lines It seems like the intention with c7d23b4ca4ba was to catch lines with only one whitespace too.

File last commit:

r16913:f2719b38 default
r17346:2944a6d3 default
Show More
test-revert-flags.t
23 lines | 336 B | text/troff | Tads3Lexer
$ "$TESTDIR/hghave" execbit || exit 80
$ hg init repo
$ cd repo
$ echo foo > foo
$ chmod 644 foo
$ hg ci -qAm '644'
$ chmod 755 foo
$ hg ci -qAm '755'
reverting to rev 0
$ hg revert -a -r 0
reverting foo
$ hg st
M foo
$ hg diff --git
diff --git a/foo b/foo
old mode 100755
new mode 100644
$ cd ..