##// END OF EJS Templates
status: disable morestatus when using -0...
Martin von Zweigbergk -
r46696:7a2b67e6 default
parent child Browse files
Show More
@@ -6766,8 +6766,10 b' def status(ui, repo, *pats, **opts):'
6766
6766
6767 morestatus = None
6767 morestatus = None
6768 if (
6768 if (
6769 ui.verbose or ui.configbool(b'commands', b'status.verbose')
6769 (ui.verbose or ui.configbool(b'commands', b'status.verbose'))
6770 ) and not ui.plain():
6770 and not ui.plain()
6771 and not opts.get(b'print0')
6772 ):
6771 morestatus = cmdutil.readmorestatus(repo)
6773 morestatus = cmdutil.readmorestatus(repo)
6772
6774
6773 ui.pager(b'status')
6775 ui.pager(b'status')
@@ -80,6 +80,8 b''
80 }
80 }
81 ]
81 ]
82
82
83 $ hg status -0
84 M a\x00? a.orig\x00 (no-eol) (esc)
83 $ cat a
85 $ cat a
84 Small Mathematical Series.
86 Small Mathematical Series.
85 1
87 1
General Comments 0
You need to be logged in to leave comments. Login now