Module: wine Branch: master Commit: 8bf223a86dee7fe120e0ddd2460309a2198a0125 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8bf223a86dee7fe120e0ddd246...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Oct 8 12:33:52 2012 +0200
winedbg: Mark the lexer as always interactive to prevent some shortcuts.
---
programs/winedbg/debug.l | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/winedbg/debug.l b/programs/winedbg/debug.l index ab1f865..a6ab10c 100644 --- a/programs/winedbg/debug.l +++ b/programs/winedbg/debug.l @@ -19,7 +19,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */
-%option noinput nounput never-interactive 8bit prefix="dbg_" +%option noinput nounput always-interactive 8bit prefix="dbg_"
%{ #include "config.h"