From 53050d79c1014a4a4ef8ee299115de9673c0dc57 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 8 Oct 2001 20:28:58 +0000 Subject: [PATCH] Provide help even when in the NOPROCESS state. --- debugger/debug.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugger/debug.l b/debugger/debug.l index c4ee4d1e1d0..910d721a72c 100644 --- a/debugger/debug.l +++ b/debugger/debug.l @@ -94,7 +94,7 @@ STRING \"[^\n"]+\" set|se { BEGIN(NOCMD); return tSET; } walk|w { BEGIN(WALK_CMD); return tWALK; } x { BEGIN(FORMAT_EXPECTED); return tEXAM; } -help|hel|he|"?" { BEGIN(HELP_CMD); return tHELP; } +help|hel|he|"?" { BEGIN(HELP_CMD); return tHELP; } backtrace|backtrac|backtra|backt|back|bac|ba|bt { BEGIN(NOCMD); return tBACKTRACE; } where|wher|whe { BEGIN(NOCMD); return tBACKTRACE; } -- 2.11.4.GIT