t/lib-pager.sh: remove unnecessary '^' from 'expr' regular expression
commit832ac79edf0e0e9108f5da5b10b496a227667f40
authorBrandon Casey <drafnel@gmail.com>
Mon, 21 Jun 2010 17:37:13 +0000 (21 12:37 -0500)
committerJunio C Hamano <gitster@pobox.com>
Mon, 21 Jun 2010 18:11:11 +0000 (21 11:11 -0700)
tree2ff2767e63ea9ec8cff14aee1f698446de9de0ac
parent0af88c15e2eb0a680c3797da8d8b97636b797f66
t/lib-pager.sh: remove unnecessary '^' from 'expr' regular expression

Regular expressions matched by 'expr' have an implicit '^' at the beginning
of them and so are anchored to the beginning of the string.  Using the '^'
character to mean "match at the beginning", is redundant and could produce
the wrong result if 'expr' implementations interpret the '^' as a literal
'^'.  Additionally, GNU expr 5.97 complains like this:

   expr: warning: unportable BRE: `^[a-z][a-z]*$': using `^' as the first character of the basic regular expression is not portable; it is being ignored

Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/lib-pager.sh