From a418694d0570d3484fa9b0efc34789261af97d95 Mon Sep 17 00:00:00 2001 From: "C. Scott Ananian" Date: Mon, 14 Mar 2005 10:48:29 +0000 Subject: [PATCH] Add tSTRING to the pathname production, so that you can quote a pathname which contains 'odd' characters. --- programs/winedbg/dbg.y | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/winedbg/dbg.y b/programs/winedbg/dbg.y index be4e573260e..322df241c87 100644 --- a/programs/winedbg/dbg.y +++ b/programs/winedbg/dbg.y @@ -154,6 +154,7 @@ command: pathname: identifier { $$ = $1; } + | tSTRING { $$ = $1; } | tPATH { $$ = $1; } ;