Replace some more -debugmsg references for WINEDEBUG.

This commit is contained in:
Vincent Béron 2004-06-21 23:56:15 +00:00 committed by Alexandre Julliard
parent b6908b4c9f
commit 9d8036e1d8
4 changed files with 6 additions and 6 deletions

View file

@ -19,7 +19,7 @@
* *
* *
* Many useful traces are commented in code, uncomment them if you have * Many useful traces are commented in code, uncomment them if you have
* trouble and run with --debugmsg +setupapi * trouble and run with WINEDEBUG=+setupapi
* *
*/ */

View file

@ -185,7 +185,7 @@ static const WORD main_key_vkey_dvorak[MAIN_LEN] =
and Shift-AltGr if it can vary among different X servers */ and Shift-AltGr if it can vary among different X servers */
/* Remember that your 102nd key (to the right of l-shift) should be on a /* Remember that your 102nd key (to the right of l-shift) should be on a
separate line, see existing tables */ separate line, see existing tables */
/* If Wine fails to match your new table, use -debugmsg +key to find out why */ /* If Wine fails to match your new table, use WINEDEBUG=+key to find out why */
/* Remember to also add your new table to the layout index table far below! */ /* Remember to also add your new table to the layout index table far below! */
/*** German Logitech Desktop Pro keyboard layout */ /*** German Logitech Desktop Pro keyboard layout */

View file

@ -202,7 +202,7 @@ export WINESERVER
info_flag=~/.wine/.no_prelaunch_window_flag info_flag=~/.wine/.no_prelaunch_window_flag
debug_flag=~/.wine/.no_debug_window_flag debug_flag=~/.wine/.no_debug_window_flag
debug_options="-debugmsg warn+all" debug_options="warn+all"
if [ -f $info_flag ] ; then if [ -f $info_flag ] ; then
use_info_message=0 use_info_message=0
@ -558,8 +558,8 @@ You may view this file by selecting View Log, below."
# If they want to retry with debug, let 'em. # If they want to retry with debug, let 'em.
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
if [ $debug_return -eq 2 ] ; then if [ $debug_return -eq 2 ] ; then
echo "Rerunning $0 $debug_options $@" echo "Rerunning WINEDEBUG=$debug_options $0 $@"
exec $0 $debug_options "$@" WINEDEBUG=$debug_options exec $0 "$@"
fi fi
done done
fi fi

View file

@ -336,7 +336,7 @@ static INT_PTR CALLBACK MSGBOX_DlgProc( HWND hwnd, UINT message,
* *
* NOTES * NOTES
* The WARN is here to help debug erroneous MessageBoxes * The WARN is here to help debug erroneous MessageBoxes
* Use: -debugmsg warn+dialog,+relay * Use: WINEDEBUG=warn+dialog,+relay
*/ */
INT WINAPI MessageBoxA(HWND hWnd, LPCSTR text, LPCSTR title, UINT type) INT WINAPI MessageBoxA(HWND hWnd, LPCSTR text, LPCSTR title, UINT type)
{ {