Do not enable yacc trace facility unconditionally

Define DEBUG and set yydebug if you want that.

Signed-off-by: Ran Benita <ran234@gmail.com>
master
Ran Benita 2012-04-06 05:09:17 +03:00 committed by Daniel Stone
parent 913e0740cb
commit b08629f92b
2 changed files with 2 additions and 3 deletions

View File

@ -30,7 +30,6 @@
#include "xkbpath.h"
#include "keycodes.h"
#include "misc.h"
#include <X11/keysym.h>
#include "parseutils.h"
/***====================================================================***/

View File

@ -25,10 +25,10 @@
********************************************************/
%{
#define DEBUG 1
#ifdef DEBUG
#define YYDEBUG 1
#define YYDEBUG 1
#endif
#include "parseutils.h"
#include "xkbmisc.h"
#include <X11/keysym.h>