tests/test-username-newline
author Shun-ichi GOTO <shunichi.goto@gmail.com>
Wed, 21 Jan 2009 20:29:47 +0900
changeset 7695 deec6628e62b
parent 7035 9d023ef7b467
permissions -rwxr-xr-x
Also find correct column width of wide characters. Use unicodedata.east_asian_width() to determine wide/full width characters if available. Otherwise, return character count as before.

#!/bin/sh
#

hg init foo
cd foo
touch a


unset HGUSER
echo "[ui]" >> .hg/hgrc
echo "username= foo" >> .hg/hgrc
echo "          bar1" >> .hg/hgrc

hg ci -Am m

rm .hg/hgrc

HGUSER=`(echo foo; echo bar2)` hg ci -Am m

hg ci -Am m -u "`(echo foo; echo bar3)`"

true