view en/examples/results/hook.ws.better.out @ 663:0d5935744f87

Switch from LaTeX to XML for examples.
author Bryan O'Sullivan <bos@serpentine.com>
date Mon, 09 Mar 2009 21:39:23 -0700
parents 44d1363234d2
children 4432ad34b8e5
line wrap: on
line source

<screen><prompt>$</prompt> <userinput>cat .hg/hgrc</userinput>
[hooks]
pretxncommit.whitespace = .hg/check_whitespace.py
<prompt>$</prompt> <userinput>echo 'a ' &gt;&gt; a</userinput>
<prompt>$</prompt> <userinput>hg commit -A -m 'add new line with trailing whitespace'</userinput>
a, line 2: trailing whitespace added
commit message saved to .hg/commit.save
transaction abort!
rollback completed
abort: pretxncommit.whitespace hook exited with status 1
<prompt>$</prompt> <userinput>sed -i 's, *$,,' a</userinput>
<prompt>$</prompt> <userinput>hg commit -A -m 'trimmed trailing whitespace'</userinput>
a, line 2: trailing whitespace added
commit message saved to .hg/commit.save
transaction abort!
rollback completed
abort: pretxncommit.whitespace hook exited with status 1
</screen>