fix(frontends/lean): do not display Ctrl-D message on Windows
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
d949dfd46d
commit
7b4ea75dee
1 changed files with 4 additions and 2 deletions
|
@ -1604,8 +1604,10 @@ class parser::imp {
|
|||
<< " Show Environment show objects in the environment, if [Num] provided, then show only the last [Num] objects" << endl
|
||||
<< " Show Environment [num] show the last num objects in the environment" << endl
|
||||
<< " Variable [id] : [type] declare/postulate an element of the given type" << endl
|
||||
<< " Universe [id] [level] declare a new universe variable that is >= the given level" << endl
|
||||
<< "Type Ctrl-D to exit" << endl;
|
||||
<< " Universe [id] [level] declare a new universe variable that is >= the given level" << endl;
|
||||
#if !defined(LEAN_WINDOWS)
|
||||
regular(m_frontend) << "Type Ctrl-D to exit" << endl;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue