Submitter | Augie Fackler |
---|---|
Date | Feb. 4, 2015, 6:15 p.m. |
Message ID | <b3e1bbb22c67b519680f.1423073713@arthedain.pit.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/7661/ |
State | Superseded |
Commit | fe195d41f7d2a9cb5e2c6890a6a233f866e36275 |
Headers | show |
Comments
Patch
diff --git a/tests/test-revset.t b/tests/test-revset.t --- a/tests/test-revset.t +++ b/tests/test-revset.t @@ -861,6 +861,20 @@ parentrevspec hg: parse error: ^ expects a number 0, 1, or 2 [255] +Bogus function gets suggestions + $ log 'add()' + hg: parse error: not a function: add + [255] + $ log 'added()' + hg: parse error: not a function: added + [255] + $ log 'remo()' + hg: parse error: not a function: remo + [255] + $ log 'babar()' + hg: parse error: not a function: babar + [255] + multiple revspecs $ hg log -r 'tip~1:tip' -r 'tip~2:tip~1' --template '{rev}\n'