i3
|
00001 /* A Bison parser, made by GNU Bison 2.4.3. */ 00002 00003 /* Skeleton interface for Bison's Yacc-like parsers in C 00004 00005 Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 00006 2009, 2010 Free Software Foundation, Inc. 00007 00008 This program is free software: you can redistribute it and/or modify 00009 it under the terms of the GNU General Public License as published by 00010 the Free Software Foundation, either version 3 of the License, or 00011 (at your option) any later version. 00012 00013 This program is distributed in the hope that it will be useful, 00014 but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 GNU General Public License for more details. 00017 00018 You should have received a copy of the GNU General Public License 00019 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 00020 00021 /* As a special exception, you may create a larger work that contains 00022 part or all of the Bison parser skeleton and distribute that work 00023 under terms of your choice, so long as that work isn't itself a 00024 parser generator using the skeleton or a modified version thereof 00025 as a parser skeleton. Alternatively, if you modify or redistribute 00026 the parser skeleton itself, you may (at your option) remove this 00027 special exception, which will cause the skeleton and the resulting 00028 Bison output files to be licensed under the GNU General Public 00029 License without this special exception. 00030 00031 This special exception was added by the Free Software Foundation in 00032 version 2.2 of Bison. */ 00033 00034 00035 /* Tokens. */ 00036 #ifndef YYTOKENTYPE 00037 # define YYTOKENTYPE 00038 /* Put the tokens into the symbol table, so that GDB and other debuggers 00039 know about them. */ 00040 enum yytokentype { 00041 NUMBER = 258, 00042 WORD = 259, 00043 STR = 260, 00044 STR_NG = 261, 00045 HEX = 262, 00046 OUTPUT = 263, 00047 TOKBIND = 264, 00048 TOKTERMINAL = 265, 00049 TOKCOMMENT = 266, 00050 TOKFONT = 267, 00051 TOKBINDSYM = 268, 00052 MODIFIER = 269, 00053 TOKCONTROL = 270, 00054 TOKSHIFT = 271, 00055 WHITESPACE = 272, 00056 TOKFLOATING_MODIFIER = 273, 00057 QUOTEDSTRING = 274, 00058 TOKWORKSPACE = 275, 00059 TOKOUTPUT = 276, 00060 TOKASSIGN = 277, 00061 TOKSET = 278, 00062 TOKIPCSOCKET = 279, 00063 TOKEXEC = 280, 00064 TOKSINGLECOLOR = 281, 00065 TOKCOLOR = 282, 00066 TOKARROW = 283, 00067 TOKMODE = 284, 00068 TOKNEWCONTAINER = 285, 00069 TOKNEWWINDOW = 286, 00070 TOKFOCUSFOLLOWSMOUSE = 287, 00071 TOKWORKSPACEBAR = 288, 00072 TOKCONTAINERMODE = 289, 00073 TOKSTACKLIMIT = 290 00074 }; 00075 #endif 00076 00077 00078 00079 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED 00080 typedef union YYSTYPE 00081 { 00082 00083 /* Line 1685 of yacc.c */ 00084 #line 204 "src/cfgparse.y" 00085 00086 int number; 00087 char *string; 00088 uint32_t *single_color; 00089 struct Colortriple *color; 00090 struct Assignment *assignment; 00091 struct Binding *binding; 00092 00093 00094 00095 /* Line 1685 of yacc.c */ 00096 #line 97 "src/cfgparse.tab.h" 00097 } YYSTYPE; 00098 # define YYSTYPE_IS_TRIVIAL 1 00099 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ 00100 # define YYSTYPE_IS_DECLARED 1 00101 #endif 00102 00103 extern YYSTYPE yylval; 00104 00105