diff --git a/documentation/debugger.sgml b/documentation/debugger.sgml
index b79a771dc1e..05e7cbe58af 100644
--- a/documentation/debugger.sgml
+++ b/documentation/debugger.sgml
@@ -966,6 +966,16 @@ wine -debug myprog.exe
The path to the debugger you chose to use must be reachable
via a DOS drive in the Wine config file !
+
+ You can also set a shell script to launch the debugger. In
+ this case, you need to be sure that the invocation in
+ this shell script is of the form:
+
+ WINEPRELOAD=<path_to_winedbg.so> exec wine $*
+
+ (Shell script must use exec, and the debugger .so file must
+ be preloaded to override the shell script information).
+
@@ -1118,6 +1128,18 @@ set $BreakAllThreadsStartup = 1
+
+ BreakOnDllLoad
+
+
+ Set to TRUE if the debugger stops
+ when a DLL is loaded into memory; when the debugger
+ is invoked after a crash, the DLLs already mapped in
+ memory will not trigger this break.
+ FALSE by default.
+
+
+
@@ -1339,7 +1361,7 @@ info local prints information on local variables for current
show dir
dir <pathname>
dir
-symbolfile <pathname>
+symbolfile <module> <pathname>
list lists 10 source lines from current position