diff options
author | John van Groningen | 2003-10-24 11:46:28 +0000 |
---|---|---|
committer | John van Groningen | 2003-10-24 11:46:28 +0000 |
commit | 1979d50a9bf81aedb6fa5e392fc2460e19a2c17b (patch) | |
tree | 2c691283319668900bddd5875bfcd64f81ec8246 | |
parent | swap newline and carriage return characters in w_get_char and (diff) |
set window title of the console window to 'press any key to exit'
instead of the messages window, if the error window is not visible
and 'no console' output is used (but output was generated, for
example because of abort)
-rw-r--r-- | _library.cxo | bin | 46833 -> 46833 bytes | |||
-rw-r--r-- | _library.xo | bin | 47105 -> 47105 bytes | |||
-rw-r--r-- | _startup.cxo | bin | 84191 -> 84215 bytes | |||
-rw-r--r-- | _startup.xo | bin | 92585 -> 92609 bytes | |||
-rw-r--r-- | _startupProfile.cxo | bin | 91598 -> 91626 bytes | |||
-rw-r--r-- | _startupProfile.xo | bin | 100072 -> 100100 bytes | |||
-rw-r--r-- | _startupProfile601.cxo | bin | 91706 -> 91734 bytes | |||
-rw-r--r-- | _startupTrace.cxo | bin | 89241 -> 89265 bytes | |||
-rw-r--r-- | _startupTrace.xo | bin | 97667 -> 97691 bytes | |||
-rw-r--r-- | macho/_library.o | bin | 35900 -> 35948 bytes | |||
-rw-r--r-- | mcon.c | 2 |
11 files changed, 1 insertions, 1 deletions
diff --git a/_library.cxo b/_library.cxo Binary files differindex cef05a2..d2432d0 100644 --- a/_library.cxo +++ b/_library.cxo diff --git a/_library.xo b/_library.xo Binary files differindex ea00d1c..a23c189 100644 --- a/_library.xo +++ b/_library.xo diff --git a/_startup.cxo b/_startup.cxo Binary files differindex bf07068..f77e2d3 100644 --- a/_startup.cxo +++ b/_startup.cxo diff --git a/_startup.xo b/_startup.xo Binary files differindex dfdc331..bef17ef 100644 --- a/_startup.xo +++ b/_startup.xo diff --git a/_startupProfile.cxo b/_startupProfile.cxo Binary files differindex dd64349..e821895 100644 --- a/_startupProfile.cxo +++ b/_startupProfile.cxo diff --git a/_startupProfile.xo b/_startupProfile.xo Binary files differindex b7fb42e..32b80cc 100644 --- a/_startupProfile.xo +++ b/_startupProfile.xo diff --git a/_startupProfile601.cxo b/_startupProfile601.cxo Binary files differindex 17951c0..2451bc7 100644 --- a/_startupProfile601.cxo +++ b/_startupProfile601.cxo diff --git a/_startupTrace.cxo b/_startupTrace.cxo Binary files differindex 0e718ed..9f60130 100644 --- a/_startupTrace.cxo +++ b/_startupTrace.cxo diff --git a/_startupTrace.xo b/_startupTrace.xo Binary files differindex 660f44a..565bd8c 100644 --- a/_startupTrace.xo +++ b/_startupTrace.xo diff --git a/macho/_library.o b/macho/_library.o Binary files differindex fa34b9b..bab502d 100644 --- a/macho/_library.o +++ b/macho/_library.o @@ -1663,7 +1663,7 @@ void wait_for_key_press (VOID) if (use_stdio) return; #endif - SetWTitle (flags & 16 ? e_window : c_window,"\ppress any key to exit"); + SetWTitle ((flags & 16) && error_window_visible ? e_window : c_window,"\ppress any key to exit"); wait_key(); } |