Rev 52714 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* A Bison parser, made by GNU Bison 2.4.2. *//* Skeleton implementation for Bison's Yacc-like parsers in CCopyright (C) 1984, 1989-1990, 2000-2006, 2009-2010 Free SoftwareFoundation, Inc.This program is free software: you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation, either version 3 of the License, or(at your option) any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program. If not, see <http://www.gnu.org/licenses/>. *//* As a special exception, you may create a larger work that containspart or all of the Bison parser skeleton and distribute that workunder terms of your choice, so long as that work isn't itself aparser generator using the skeleton or a modified version thereofas a parser skeleton. Alternatively, if you modify or redistributethe parser skeleton itself, you may (at your option) remove thisspecial exception, which will cause the skeleton and the resultingBison output files to be licensed under the GNU General PublicLicense without this special exception.This special exception was added by the Free Software Foundation inversion 2.2 of Bison. *//* C LALR(1) parser skeleton written by Richard Stallman, bysimplifying the original so-called "semantic" parser. *//* All symbols defined below should begin with yy or YY, to avoidinfringing on user name space. This should be done even for localvariables, as they might otherwise be expanded by user macros.There are some unavoidable exceptions within include files todefine necessary library symbols; they are noted "INFRINGES ONUSER NAME SPACE" below. *//* Identify Bison output. */#define YYBISON 1/* Bison version. */#define YYBISON_VERSION "2.4.2"/* Skeleton name. */#define YYSKELETON_NAME "yacc.c"/* Pure parsers. */#define YYPURE 0/* Push parsers. */#define YYPUSH 0/* Pull parsers. */#define YYPULL 1/* Using locations. */#define YYLSP_NEEDED 1/* Copy the first part of user declarations. *//* Line 189 of yacc.c */#line 2 "gramRd.y"/** R : A Computer Langage for Statistical Data Analysis* Copyright (C) 1995, 1996, 1997 Robert Gentleman and Ross Ihaka* Copyright (C) 1997--2010 The R Development Core Team** This program is free software; you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation; either version 2 of the License, or* (at your option) any later version.** This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.** You should have received a copy of the GNU General Public License* along with this program; if not, a copy is available at* http://www.r-project.org/Licenses/*/#ifdef HAVE_CONFIG_H#include <config.h>#endif#include <Defn.h>#include <Parse.h>#define STRICT_R_HEADERS#include <R_ext/RS.h> /* for R_chk_* allocation */#include <ctype.h>#include <Rmath.h> /* for imax2(.),..*/#define DEBUGVALS 0 /* 1 causes detailed internal state output to R console */#define DEBUGMODE 0 /* 1 causes Bison output of parse state, to stdout or stderr */static Rboolean wCalls = TRUE;#define YYERROR_VERBOSE 1static void yyerror(const char *);static int yylex();static int yyparse(void);#define yyconst consttypedef struct yyltype{int first_line;int first_column;int first_byte;int last_line;int last_column;int last_byte;} yyltype;# define YYLTYPE yyltype# define YYLLOC_DEFAULT(Current, Rhs, N) \do \if (YYID (N)) \{ \(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \(Current).first_byte = YYRHSLOC (Rhs, 1).first_byte; \(Current).last_line = YYRHSLOC (Rhs, N).last_line; \(Current).last_column = YYRHSLOC (Rhs, N).last_column; \(Current).last_byte = YYRHSLOC (Rhs, N).last_byte; \} \else \{ \(Current).first_line = (Current).last_line = \YYRHSLOC (Rhs, 0).last_line; \(Current).first_column = (Current).last_column = \YYRHSLOC (Rhs, 0).last_column; \(Current).first_byte = (Current).last_byte = \YYRHSLOC (Rhs, 0).last_byte; \} \while (YYID (0))/* Useful defines so editors don't get confused ... */#define LBRACE '{'#define RBRACE '}'/* Functions used in the parsing process */static SEXP GrowList(SEXP, SEXP);static int KeywordLookup(const char *);static SEXP UserMacroLookup(const char *);static SEXP InstallKeywords();static SEXP NewList(void);static SEXP makeSrcref(YYLTYPE *, SEXP);/* Flags used to mark need for postprocessing in the dynamicFlag attribute */#define STATIC 0#define HAS_IFDEF 1#define HAS_SEXPR 2/* Internal lexer / parser state variables */static int xxinRString, xxQuoteLine, xxQuoteCol;static int xxinEqn;static int xxNewlineInString;static int xxgetc();static int xxungetc(int);static int xxlineno, xxbyteno, xxcolno;static int xxmode, xxitemType, xxbraceDepth; /* context for lexer */static int xxDebugTokens; /* non-zero causes debug output to R console */static const char* xxBasename; /* basename of file for error messages */static SEXP Value;static int xxinitvalue;static char const yyunknown[] = "unknown macro"; /* our message, not bison's */static SEXP xxMacroList;/* A hashed environment containing all the standard and user-defined macro names */#define RLIKE 1 /* Includes R strings; xxinRString holds the opening quote char, or 0 outside a string */#define LATEXLIKE 2#define VERBATIM 3#define INOPTION 4#define COMMENTMODE 5 /* only used in deparsing */#define UNKNOWNMODE 6 /* ditto */static SEXP SrcFile; /* parse_Rd will *always* supply a srcfile *//* Routines used to build the parse tree */static SEXP xxpushMode(int, int, int);static void xxpopMode(SEXP);static SEXP xxnewlist(SEXP);static SEXP xxnewlist2(SEXP, SEXP);static SEXP xxnewlist3(SEXP, SEXP, SEXP);static SEXP xxnewlist4(SEXP, SEXP, SEXP, SEXP);static SEXP xxnewlist5(SEXP, SEXP, SEXP, SEXP, SEXP);static SEXP xxnewlist6(SEXP, SEXP, SEXP, SEXP, SEXP, SEXP);static SEXP xxnewlist7(SEXP, SEXP, SEXP, SEXP, SEXP, SEXP, SEXP);static SEXP xxnewlist8(SEXP, SEXP, SEXP, SEXP, SEXP, SEXP, SEXP, SEXP);static SEXP xxnewlist9(SEXP, SEXP, SEXP, SEXP, SEXP, SEXP, SEXP, SEXP, SEXP);static SEXP xxlist(SEXP, SEXP);static SEXP xxmarkup(SEXP, SEXP, int, YYLTYPE *);static SEXP xxmarkup2(SEXP, SEXP, SEXP, int, int, YYLTYPE *);static SEXP xxmarkup3(SEXP, SEXP, SEXP, SEXP, int, YYLTYPE *);static SEXP xxOptionmarkup(SEXP, SEXP, SEXP, int, YYLTYPE *);static SEXP xxtag(SEXP, int, YYLTYPE *);static void xxsavevalue(SEXP, YYLTYPE *);static void xxWarnNewline();static SEXP xxnewcommand(SEXP, SEXP, SEXP, YYLTYPE *);static SEXP xxusermacro(SEXP, SEXP, YYLTYPE *);static int mkMarkup(int);static int mkIfdef(int);static int mkCode(int);static int mkText(int);static int mkVerb(int);static int mkComment(int);#define YYSTYPE SEXP/* Line 189 of yacc.c */#line 234 "gramRd.c"/* Enabling traces. */#ifndef YYDEBUG# define YYDEBUG 1#endif/* Enabling verbose error messages. */#ifdef YYERROR_VERBOSE# undef YYERROR_VERBOSE# define YYERROR_VERBOSE 1#else# define YYERROR_VERBOSE 0#endif/* Enabling the token table. */#ifndef YYTOKEN_TABLE# define YYTOKEN_TABLE 0#endif/* Tokens. */#ifndef YYTOKENTYPE# define YYTOKENTYPE/* Put the tokens into the symbol table, so that GDB and other debuggersknow about them. */enum yytokentype {END_OF_INPUT = 258,ERROR = 259,SECTIONHEADER = 260,RSECTIONHEADER = 261,VSECTIONHEADER = 262,SECTIONHEADER2 = 263,RCODEMACRO = 264,SEXPR = 265,RDOPTS = 266,LATEXMACRO = 267,VERBMACRO = 268,OPTMACRO = 269,ESCAPE = 270,LISTSECTION = 271,ITEMIZE = 272,DESCRIPTION = 273,NOITEM = 274,LATEXMACRO2 = 275,VERBMACRO2 = 276,VERBLATEX = 277,LATEXMACRO3 = 278,NEWCOMMAND = 279,USERMACRO = 280,USERMACRO1 = 281,USERMACRO2 = 282,USERMACRO3 = 283,USERMACRO4 = 284,USERMACRO5 = 285,USERMACRO6 = 286,USERMACRO7 = 287,USERMACRO8 = 288,USERMACRO9 = 289,IFDEF = 290,ENDIF = 291,TEXT = 292,RCODE = 293,VERB = 294,COMMENT = 295,UNKNOWN = 296,STARTFILE = 297,STARTFRAGMENT = 298};#endif#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLAREDtypedef int YYSTYPE;# define YYSTYPE_IS_TRIVIAL 1# define yystype YYSTYPE /* obsolescent; will be withdrawn */# define YYSTYPE_IS_DECLARED 1#endif#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLAREDtypedef struct YYLTYPE{int first_line;int first_column;int last_line;int last_column;} YYLTYPE;# define yyltype YYLTYPE /* obsolescent; will be withdrawn */# define YYLTYPE_IS_DECLARED 1# define YYLTYPE_IS_TRIVIAL 1#endif/* Copy the second part of user declarations. *//* Line 264 of yacc.c */#line 332 "gramRd.c"#ifdef short# undef short#endif#ifdef YYTYPE_UINT8typedef YYTYPE_UINT8 yytype_uint8;#elsetypedef unsigned char yytype_uint8;#endif#ifdef YYTYPE_INT8typedef YYTYPE_INT8 yytype_int8;#elif (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)typedef signed char yytype_int8;#elsetypedef short int yytype_int8;#endif#ifdef YYTYPE_UINT16typedef YYTYPE_UINT16 yytype_uint16;#elsetypedef unsigned short int yytype_uint16;#endif#ifdef YYTYPE_INT16typedef YYTYPE_INT16 yytype_int16;#elsetypedef short int yytype_int16;#endif#ifndef YYSIZE_T# ifdef __SIZE_TYPE__# define YYSIZE_T __SIZE_TYPE__# elif defined size_t# define YYSIZE_T size_t# elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)# include <stddef.h> /* INFRINGES ON USER NAME SPACE */# define YYSIZE_T size_t# else# define YYSIZE_T unsigned int# endif#endif#define YYSIZE_MAXIMUM ((YYSIZE_T) -1)#ifndef YY_# if defined YYENABLE_NLS && YYENABLE_NLS# if ENABLE_NLS# include <libintl.h> /* INFRINGES ON USER NAME SPACE */# define YY_(msgid) dgettext ("bison-runtime", msgid)# endif# endif# ifndef YY_# define YY_(msgid) msgid# endif#endif/* Suppress unused-variable warnings by "using" E. */#if ! defined lint || defined __GNUC__# define YYUSE(e) ((void) (e))#else# define YYUSE(e) /* empty */#endif/* Identity function, used to suppress warnings about constant conditions. */#ifndef lint# define YYID(n) (n)#else#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static intYYID (int yyi)#elsestatic intYYID (yyi)int yyi;#endif{return yyi;}#endif#if ! defined yyoverflow || YYERROR_VERBOSE/* The parser invokes alloca or malloc; define the necessary symbols. */# ifdef YYSTACK_USE_ALLOCA# if YYSTACK_USE_ALLOCA# ifdef __GNUC__# define YYSTACK_ALLOC __builtin_alloca# elif defined __BUILTIN_VA_ARG_INCR# include <alloca.h> /* INFRINGES ON USER NAME SPACE */# elif defined _AIX# define YYSTACK_ALLOC __alloca# elif defined _MSC_VER# include <malloc.h> /* INFRINGES ON USER NAME SPACE */# define alloca _alloca# else# define YYSTACK_ALLOC alloca# if ! defined _ALLOCA_H && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */# ifndef _STDLIB_H# define _STDLIB_H 1# endif# endif# endif# endif# endif# ifdef YYSTACK_ALLOC/* Pacify GCC's `empty if-body' warning. */# define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))# ifndef YYSTACK_ALLOC_MAXIMUM/* The OS might guarantee only one guard page at the bottom of the stack,and a page size can be as small as 4096 bytes. So we cannot safelyinvoke alloca (N) if N exceeds 4096. Use a slightly smaller numberto allow for a few compiler-allocated temporary stack slots. */# define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */# endif# else# define YYSTACK_ALLOC YYMALLOC# define YYSTACK_FREE YYFREE# ifndef YYSTACK_ALLOC_MAXIMUM# define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM# endif# if (defined __cplusplus && ! defined _STDLIB_H \&& ! ((defined YYMALLOC || defined malloc) \&& (defined YYFREE || defined free)))# include <stdlib.h> /* INFRINGES ON USER NAME SPACE */# ifndef _STDLIB_H# define _STDLIB_H 1# endif# endif# ifndef YYMALLOC# define YYMALLOC malloc# if ! defined malloc && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */# endif# endif# ifndef YYFREE# define YYFREE free# if ! defined free && ! defined _STDLIB_H && (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)void free (void *); /* INFRINGES ON USER NAME SPACE */# endif# endif# endif#endif /* ! defined yyoverflow || YYERROR_VERBOSE */#if (! defined yyoverflow \&& (! defined __cplusplus \|| (defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL \&& defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL)))/* A type that is properly aligned for any stack member. */union yyalloc{yytype_int16 yyss_alloc;YYSTYPE yyvs_alloc;YYLTYPE yyls_alloc;};/* The size of the maximum gap between one aligned stack and the next. */# define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1)/* The size of an array large to enough to hold all stacks, each withN elements. */# define YYSTACK_BYTES(N) \((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE) + sizeof (YYLTYPE)) \+ 2 * YYSTACK_GAP_MAXIMUM)/* Copy COUNT objects from FROM to TO. The source and destination donot overlap. */# ifndef YYCOPY# if defined __GNUC__ && 1 < __GNUC__# define YYCOPY(To, From, Count) \__builtin_memcpy (To, From, (Count) * sizeof (*(From)))# else# define YYCOPY(To, From, Count) \do \{ \YYSIZE_T yyi; \for (yyi = 0; yyi < (Count); yyi++) \(To)[yyi] = (From)[yyi]; \} \while (YYID (0))# endif# endif/* Relocate STACK from its old location to the new one. Thelocal variables YYSIZE and YYSTACKSIZE give the old and new number ofelements in the stack, and YYPTR gives the new location of thestack. Advance YYPTR to a properly aligned location for the nextstack. */# define YYSTACK_RELOCATE(Stack_alloc, Stack) \do \{ \YYSIZE_T yynewbytes; \YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \Stack = &yyptr->Stack_alloc; \yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \yyptr += yynewbytes / sizeof (*yyptr); \} \while (YYID (0))#endif/* YYFINAL -- State number of the termination state. */#define YYFINAL 33/* YYLAST -- Last index in YYTABLE. */#define YYLAST 765/* YYNTOKENS -- Number of terminals. */#define YYNTOKENS 48/* YYNNTS -- Number of nonterminals. */#define YYNNTS 31/* YYNRULES -- Number of rules. */#define YYNRULES 87/* YYNRULES -- Number of states. */#define YYNSTATES 192/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */#define YYUNDEFTOK 2#define YYMAXUTOK 298#define YYTRANSLATE(YYX) \((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK)/* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */static const yytype_uint8 yytranslate[] ={0, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 46, 2, 47, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 44, 2, 45, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 2, 2, 2, 2,2, 2, 2, 2, 2, 2, 1, 2, 3, 4,5, 6, 7, 8, 9, 10, 11, 12, 13, 14,15, 16, 17, 18, 19, 20, 21, 22, 23, 24,25, 26, 27, 28, 29, 30, 31, 32, 33, 34,35, 36, 37, 38, 39, 40, 41, 42, 43};#if YYDEBUG/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN inYYRHS. */static const yytype_uint16 yyprhs[] ={0, 0, 3, 7, 11, 13, 16, 18, 20, 23,26, 29, 32, 35, 38, 42, 47, 51, 56, 58,60, 62, 65, 67, 70, 72, 74, 76, 78, 80,82, 84, 86, 89, 92, 96, 101, 104, 107, 111,116, 119, 123, 128, 131, 134, 138, 140, 145, 149,153, 155, 158, 162, 167, 173, 180, 188, 198, 209,221, 224, 227, 230, 233, 236, 239, 244, 248, 251,254, 259, 263, 266, 267, 268, 269, 270, 271, 272,273, 274, 275, 279, 282, 287, 291, 296};/* YYRHS -- A `-1'-separated list of the rules' RHS. */static const yytype_int8 yyrhs[] ={49, 0, -1, 42, 51, 3, -1, 43, 50, 3,-1, 1, -1, 68, 54, -1, 52, -1, 53, -1,52, 53, -1, 7, 64, -1, 11, 64, -1, 6,62, -1, 5, 58, -1, 16, 61, -1, 8, 58,59, -1, 35, 67, 52, 36, -1, 10, 71, 63,-1, 10, 71, 78, 63, -1, 40, -1, 37, -1,57, -1, 1, 53, -1, 55, -1, 54, 55, -1,37, -1, 38, -1, 39, -1, 40, -1, 41, -1,77, -1, 56, -1, 57, -1, 1, 55, -1, 12,58, -1, 20, 58, 59, -1, 23, 58, 59, 59,-1, 17, 60, -1, 18, 61, -1, 14, 71, 58,-1, 14, 71, 78, 58, -1, 9, 62, -1, 10,71, 63, -1, 10, 71, 78, 63, -1, 13, 64,-1, 21, 65, -1, 21, 65, 66, -1, 15, -1,35, 67, 54, 36, -1, 22, 65, 59, -1, 24,65, 64, -1, 25, -1, 26, 64, -1, 27, 64,64, -1, 28, 64, 64, 64, -1, 29, 64, 64,64, 64, -1, 30, 64, 64, 64, 64, 64, -1,31, 64, 64, 64, 64, 64, 64, -1, 32, 64,64, 64, 64, 64, 64, 64, 64, -1, 33, 64,64, 64, 64, 64, 64, 64, 64, 64, -1, 34,64, 64, 64, 64, 64, 64, 64, 64, 64, 64,-1, 68, 77, -1, 68, 77, -1, 68, 37, -1,75, 77, -1, 76, 77, -1, 69, 77, -1, 44,70, 54, 45, -1, 44, 70, 45, -1, 72, 77,-1, 73, 77, -1, 44, 74, 54, 45, -1, 44,74, 45, -1, 68, 37, -1, -1, -1, -1, -1,-1, -1, -1, -1, -1, 44, 54, 45, -1, 44,45, -1, 44, 54, 1, 45, -1, 44, 1, 45,-1, 44, 54, 1, 3, -1, 46, 55, 47, -1};/* YYRLINE[YYN] -- source line where rule number YYN was defined. */static const yytype_uint16 yyrline[] ={0, 196, 196, 197, 198, 201, 204, 207, 208, 210,211, 212, 213, 214, 215, 216, 217, 218, 219, 220,221, 222, 224, 225, 227, 228, 229, 230, 231, 232,233, 234, 235, 237, 238, 239, 240, 241, 242, 243,244, 245, 246, 247, 248, 249, 250, 251, 252, 254,255, 256, 257, 259, 261, 263, 265, 267, 270, 273,278, 280, 281, 290, 292, 294, 298, 299, 301, 303,307, 308, 310, 313, 315, 317, 319, 321, 323, 325,327, 329, 331, 332, 333, 334, 335, 337};#endif#if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE/* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM.First, the terminals, then, starting at YYNTOKENS, nonterminals. */static const char *const yytname[] ={"$end", "error", "$undefined", "END_OF_INPUT", "ERROR", "SECTIONHEADER","RSECTIONHEADER", "VSECTIONHEADER", "SECTIONHEADER2", "RCODEMACRO","SEXPR", "RDOPTS", "LATEXMACRO", "VERBMACRO", "OPTMACRO", "ESCAPE","LISTSECTION", "ITEMIZE", "DESCRIPTION", "NOITEM", "LATEXMACRO2","VERBMACRO2", "VERBLATEX", "LATEXMACRO3", "NEWCOMMAND", "USERMACRO","USERMACRO1", "USERMACRO2", "USERMACRO3", "USERMACRO4", "USERMACRO5","USERMACRO6", "USERMACRO7", "USERMACRO8", "USERMACRO9", "IFDEF", "ENDIF","TEXT", "RCODE", "VERB", "COMMENT", "UNKNOWN", "STARTFILE","STARTFRAGMENT", "'{'", "'}'", "'['", "']'", "$accept", "Init","RdFragment", "RdFile", "SectionList", "Section", "ArgItems", "Item","Markup", "UserMacro", "LatexArg", "LatexArg2", "Item0Arg", "Item2Arg","RLikeArg", "RLikeArg2", "VerbatimArg", "VerbatimArg1", "VerbatimArg2","IfDefTarget", "goLatexLike", "goRLike", "goRLike2", "goOption","goVerbatim", "goVerbatim1", "goVerbatim2", "goItem0", "goItem2", "Arg","Option", 0};#endif# ifdef YYPRINT/* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding totoken YYLEX-NUM. */static const yytype_uint16 yytoknum[] ={0, 256, 257, 258, 259, 260, 261, 262, 263, 264,265, 266, 267, 268, 269, 270, 271, 272, 273, 274,275, 276, 277, 278, 279, 280, 281, 282, 283, 284,285, 286, 287, 288, 289, 290, 291, 292, 293, 294,295, 296, 297, 298, 123, 125, 91, 93};# endif/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */static const yytype_uint8 yyr1[] ={0, 48, 49, 49, 49, 50, 51, 52, 52, 53,53, 53, 53, 53, 53, 53, 53, 53, 53, 53,53, 53, 54, 54, 55, 55, 55, 55, 55, 55,55, 55, 55, 56, 56, 56, 56, 56, 56, 56,56, 56, 56, 56, 56, 56, 56, 56, 56, 57,57, 57, 57, 57, 57, 57, 57, 57, 57, 57,58, 59, 59, 60, 61, 62, 63, 63, 64, 65,66, 66, 67, 68, 69, 70, 71, 72, 73, 74,75, 76, 77, 77, 77, 77, 77, 78};/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */static const yytype_uint8 yyr2[] ={0, 2, 3, 3, 1, 2, 1, 1, 2, 2,2, 2, 2, 2, 3, 4, 3, 4, 1, 1,1, 2, 1, 2, 1, 1, 1, 1, 1, 1,1, 1, 2, 2, 3, 4, 2, 2, 3, 4,2, 3, 4, 2, 2, 3, 1, 4, 3, 3,1, 2, 3, 4, 5, 6, 7, 9, 10, 11,2, 2, 2, 2, 2, 2, 4, 3, 2, 2,4, 3, 2, 0, 0, 0, 0, 0, 0, 0,0, 0, 3, 2, 4, 3, 4, 3};/* YYDEFACT[STATE-NAME] -- Default rule to reduce with in stateSTATE-NUM when YYTABLE doesn't specify something else to do. Zeromeans the default is an error. */static const yytype_uint8 yydefact[] ={0, 4, 0, 73, 0, 0, 73, 74, 77, 73,76, 77, 81, 78, 50, 77, 77, 77, 77, 77,77, 77, 77, 77, 73, 19, 18, 0, 0, 7,20, 0, 0, 1, 21, 12, 0, 11, 0, 9,0, 73, 0, 10, 13, 0, 77, 0, 51, 77,77, 77, 77, 77, 77, 77, 77, 0, 0, 2,8, 3, 0, 74, 76, 73, 77, 76, 46, 80,81, 73, 78, 78, 73, 73, 24, 25, 26, 27,28, 0, 0, 22, 30, 31, 29, 60, 65, 68,14, 0, 75, 0, 16, 0, 64, 49, 69, 52,77, 77, 77, 77, 77, 77, 77, 0, 72, 32,40, 0, 33, 43, 73, 36, 0, 37, 73, 44,73, 73, 0, 0, 83, 0, 23, 62, 61, 0,0, 17, 53, 77, 77, 77, 77, 77, 77, 15,41, 0, 38, 73, 63, 34, 79, 45, 48, 73,0, 85, 0, 82, 67, 0, 87, 54, 77, 77,77, 77, 77, 42, 39, 0, 35, 47, 86, 84,66, 55, 77, 77, 77, 77, 71, 0, 56, 77,77, 77, 70, 77, 77, 77, 57, 77, 77, 58,77, 59};/* YYDEFGOTO[NTERM-NUM]. */static const yytype_int16 yydefgoto[] ={-1, 4, 31, 27, 28, 29, 82, 83, 84, 85,35, 90, 115, 44, 37, 94, 39, 46, 147, 57,36, 38, 129, 42, 40, 47, 165, 116, 45, 86,95};/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describingSTATE-NUM. */#define YYPACT_NINF -101static const yytype_int16 yypact[] ={27, -101, 725, -101, 3, 725, -101, -101, -101, -101,-101, -101, -101, -101, -101, -101, -101, -101, -101, -101,-101, -101, -101, -101, -101, -101, -101, 11, 651, -101,-101, 19, 609, -101, -101, -101, -12, -101, -12, -101,-12, -101, 8, -101, -101, -12, -101, -12, -101, -101,-101, -101, -101, -101, -101, -101, -101, 725, -1, -101,-101, -101, 609, -101, -101, -101, -101, -101, -101, -101,-101, -101, -101, -101, -101, -101, -101, -101, -101, -101,-101, 236, 527, -101, -101, -101, -101, -101, -101, -101,-101, -21, -101, 609, -101, 9, -101, -101, -101, -101,-101, -101, -101, -101, -101, -101, -101, 688, -101, -101,-101, 8, -101, -101, 12, -101, -12, -101, -101, 15,-101, -101, 609, 277, -101, 318, -101, -101, -101, 359,17, -101, -101, -101, -101, -101, -101, -101, -101, -101,-101, 9, -101, -101, -101, -101, -101, -101, -101, -101,568, -101, 195, -101, -101, 400, -101, -101, -101, -101,-101, -101, -101, -101, -101, 441, -101, -101, -101, -101,-101, -101, -101, -101, -101, -101, -101, 482, -101, -101,-101, -101, -101, -101, -101, -101, -101, -101, -101, -101,-101, -101};/* YYPGOTO[NTERM-NUM]. */static const yytype_int8 yypgoto[] ={-101, -101, -101, -101, 5, -3, -62, -45, -101, 22,-8, -100, -101, -14, 2, -80, -11, -26, -101, -7,10, -101, -101, -38, -101, -101, -101, -101, -101, 98,-81};/* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. Ifpositive, shift that token. If negative, reduce the rule whichnumber is the opposite. If zero, do what YYDEFACT says.If YYTABLE_NINF, syntax error. */#define YYTABLE_NINF -7static const yytype_int16 yytable[] ={43, 41, 34, 33, 48, 49, 50, 51, 52, 53,54, 55, 56, 32, 59, 131, 127, 109, 145, 125,148, 149, 61, 81, 30, 60, 111, 30, 1, 114,141, 140, 81, 143, 58, 97, 108, 126, 99, 100,101, 102, 103, 104, 105, 106, 119, 120, 130, 166,30, 91, 92, 92, 93, 113, 117, 112, 93, 146,150, 163, 107, 118, 156, 110, 121, 155, 122, 2,3, 0, 0, 0, 0, 0, 0, 0, 109, 30,126, 0, 0, 0, 0, 58, 0, 0, 0, 132,133, 134, 135, 136, 137, 138, 0, 0, 0, 0,0, 0, 0, 177, 60, 126, 142, 109, 0, 0,126, 0, 0, 0, 0, 0, 0, 0, 0, 0,0, 0, 157, 158, 159, 160, 161, 162, 91, 30,91, 91, 126, 0, 87, 164, 88, 0, 89, 0,0, 0, 0, 96, 0, 98, 0, 171, 172, 173,174, 175, 0, 0, 0, 0, 0, 0, 0, 91,0, 178, 179, 180, 181, 0, 0, 0, 183, 184,185, 0, 186, 187, 188, 0, 189, 190, 0, 191,0, 0, 0, 0, 0, 0, 0, 0, 0, 128,0, 0, 0, 0, 0, 0, 62, 0, 168, 0,0, 0, 0, 0, 63, 64, 0, 65, 66, 67,68, 0, 69, 70, 144, 71, 72, 73, 74, 13,14, 15, 16, 17, 18, 19, 20, 21, 22, 23,75, 0, 76, 77, 78, 79, 80, 123, 0, 81,169, 0, 0, 0, 0, 63, 64, 0, 65, 66,67, 68, 0, 69, 70, 0, 71, 72, 73, 74,13, 14, 15, 16, 17, 18, 19, 20, 21, 22,23, 75, 0, 76, 77, 78, 79, 80, 62, 0,81, 124, 0, 0, 0, 0, 63, 64, 0, 65,66, 67, 68, 0, 69, 70, 0, 71, 72, 73,74, 13, 14, 15, 16, 17, 18, 19, 20, 21,22, 23, 75, 0, 76, 77, 78, 79, 80, 152,0, 81, 151, 0, 0, 0, 0, 63, 64, 0,65, 66, 67, 68, 0, 69, 70, 0, 71, 72,73, 74, 13, 14, 15, 16, 17, 18, 19, 20,21, 22, 23, 75, 0, 76, 77, 78, 79, 80,62, 0, 81, 153, 0, 0, 0, 0, 63, 64,0, 65, 66, 67, 68, 0, 69, 70, 0, 71,72, 73, 74, 13, 14, 15, 16, 17, 18, 19,20, 21, 22, 23, 75, 0, 76, 77, 78, 79,80, 62, 0, 81, 154, 0, 0, 0, 0, 63,64, 0, 65, 66, 67, 68, 0, 69, 70, 0,71, 72, 73, 74, 13, 14, 15, 16, 17, 18,19, 20, 21, 22, 23, 75, 0, 76, 77, 78,79, 80, 62, 0, 81, 170, 0, 0, 0, 0,63, 64, 0, 65, 66, 67, 68, 0, 69, 70,0, 71, 72, 73, 74, 13, 14, 15, 16, 17,18, 19, 20, 21, 22, 23, 75, 0, 76, 77,78, 79, 80, 62, 0, 81, 176, 0, 0, 0,0, 63, 64, 0, 65, 66, 67, 68, 0, 69,70, 0, 71, 72, 73, 74, 13, 14, 15, 16,17, 18, 19, 20, 21, 22, 23, 75, 0, 76,77, 78, 79, 80, 0, 0, 81, 182, 62, 0,-5, 0, 0, 0, 0, 0, 63, 64, 0, 65,66, 67, 68, 0, 69, 70, 0, 71, 72, 73,74, 13, 14, 15, 16, 17, 18, 19, 20, 21,22, 23, 75, 0, 76, 77, 78, 79, 80, 62,0, 81, 0, 0, 0, 0, 0, 63, 64, 0,65, 66, 67, 68, 0, 69, 70, 0, 71, 72,73, 74, 13, 14, 15, 16, 17, 18, 19, 20,21, 22, 23, 75, 167, 76, 77, 78, 79, 80,62, 0, 81, 0, 0, 0, 0, 0, 63, 64,0, 65, 66, 67, 68, 0, 69, 70, 0, 71,72, 73, 74, 13, 14, 15, 16, 17, 18, 19,20, 21, 22, 23, 75, 0, 76, 77, 78, 79,80, 0, 5, 81, -6, 0, 6, 7, 8, 9,0, 10, 11, 0, 0, 0, 0, 12, 0, 0,0, 0, 0, 0, 0, 13, 14, 15, 16, 17,18, 19, 20, 21, 22, 23, 24, 0, 25, 5,0, 26, 0, 6, 7, 8, 9, 0, 10, 11,0, 0, 0, 0, 12, 0, 0, 0, 0, 0,0, 0, 13, 14, 15, 16, 17, 18, 19, 20,21, 22, 23, 24, 139, 25, 5, 0, 26, 0,6, 7, 8, 9, 0, 10, 11, 0, 0, 0,0, 12, 0, 0, 0, 0, 0, 0, 0, 13,14, 15, 16, 17, 18, 19, 20, 21, 22, 23,24, 0, 25, 0, 0, 26};static const yytype_int16 yycheck[] ={11, 9, 5, 0, 15, 16, 17, 18, 19, 20,21, 22, 23, 3, 3, 95, 37, 62, 118, 81,120, 121, 3, 44, 2, 28, 64, 5, 1, 67,111, 111, 44, 114, 24, 46, 37, 82, 49, 50,51, 52, 53, 54, 55, 56, 72, 73, 93, 149,28, 41, 44, 44, 46, 66, 70, 65, 46, 44,122, 141, 57, 71, 47, 63, 74, 129, 75, 42,43, -1, -1, -1, -1, -1, -1, -1, 123, 57,125, -1, -1, -1, -1, 75, -1, -1, -1, 100,101, 102, 103, 104, 105, 106, -1, -1, -1, -1,-1, -1, -1, 165, 107, 150, 114, 152, -1, -1,155, -1, -1, -1, -1, -1, -1, -1, -1, -1,-1, -1, 133, 134, 135, 136, 137, 138, 118, 107,120, 121, 177, -1, 36, 143, 38, -1, 40, -1,-1, -1, -1, 45, -1, 47, -1, 158, 159, 160,161, 162, -1, -1, -1, -1, -1, -1, -1, 149,-1, 172, 173, 174, 175, -1, -1, -1, 179, 180,181, -1, 183, 184, 185, -1, 187, 188, -1, 190,-1, -1, -1, -1, -1, -1, -1, -1, -1, 91,-1, -1, -1, -1, -1, -1, 1, -1, 3, -1,-1, -1, -1, -1, 9, 10, -1, 12, 13, 14,15, -1, 17, 18, 116, 20, 21, 22, 23, 24,25, 26, 27, 28, 29, 30, 31, 32, 33, 34,35, -1, 37, 38, 39, 40, 41, 1, -1, 44,45, -1, -1, -1, -1, 9, 10, -1, 12, 13,14, 15, -1, 17, 18, -1, 20, 21, 22, 23,24, 25, 26, 27, 28, 29, 30, 31, 32, 33,34, 35, -1, 37, 38, 39, 40, 41, 1, -1,44, 45, -1, -1, -1, -1, 9, 10, -1, 12,13, 14, 15, -1, 17, 18, -1, 20, 21, 22,23, 24, 25, 26, 27, 28, 29, 30, 31, 32,33, 34, 35, -1, 37, 38, 39, 40, 41, 1,-1, 44, 45, -1, -1, -1, -1, 9, 10, -1,12, 13, 14, 15, -1, 17, 18, -1, 20, 21,22, 23, 24, 25, 26, 27, 28, 29, 30, 31,32, 33, 34, 35, -1, 37, 38, 39, 40, 41,1, -1, 44, 45, -1, -1, -1, -1, 9, 10,-1, 12, 13, 14, 15, -1, 17, 18, -1, 20,21, 22, 23, 24, 25, 26, 27, 28, 29, 30,31, 32, 33, 34, 35, -1, 37, 38, 39, 40,41, 1, -1, 44, 45, -1, -1, -1, -1, 9,10, -1, 12, 13, 14, 15, -1, 17, 18, -1,20, 21, 22, 23, 24, 25, 26, 27, 28, 29,30, 31, 32, 33, 34, 35, -1, 37, 38, 39,40, 41, 1, -1, 44, 45, -1, -1, -1, -1,9, 10, -1, 12, 13, 14, 15, -1, 17, 18,-1, 20, 21, 22, 23, 24, 25, 26, 27, 28,29, 30, 31, 32, 33, 34, 35, -1, 37, 38,39, 40, 41, 1, -1, 44, 45, -1, -1, -1,-1, 9, 10, -1, 12, 13, 14, 15, -1, 17,18, -1, 20, 21, 22, 23, 24, 25, 26, 27,28, 29, 30, 31, 32, 33, 34, 35, -1, 37,38, 39, 40, 41, -1, -1, 44, 45, 1, -1,3, -1, -1, -1, -1, -1, 9, 10, -1, 12,13, 14, 15, -1, 17, 18, -1, 20, 21, 22,23, 24, 25, 26, 27, 28, 29, 30, 31, 32,33, 34, 35, -1, 37, 38, 39, 40, 41, 1,-1, 44, -1, -1, -1, -1, -1, 9, 10, -1,12, 13, 14, 15, -1, 17, 18, -1, 20, 21,22, 23, 24, 25, 26, 27, 28, 29, 30, 31,32, 33, 34, 35, 36, 37, 38, 39, 40, 41,1, -1, 44, -1, -1, -1, -1, -1, 9, 10,-1, 12, 13, 14, 15, -1, 17, 18, -1, 20,21, 22, 23, 24, 25, 26, 27, 28, 29, 30,31, 32, 33, 34, 35, -1, 37, 38, 39, 40,41, -1, 1, 44, 3, -1, 5, 6, 7, 8,-1, 10, 11, -1, -1, -1, -1, 16, -1, -1,-1, -1, -1, -1, -1, 24, 25, 26, 27, 28,29, 30, 31, 32, 33, 34, 35, -1, 37, 1,-1, 40, -1, 5, 6, 7, 8, -1, 10, 11,-1, -1, -1, -1, 16, -1, -1, -1, -1, -1,-1, -1, 24, 25, 26, 27, 28, 29, 30, 31,32, 33, 34, 35, 36, 37, 1, -1, 40, -1,5, 6, 7, 8, -1, 10, 11, -1, -1, -1,-1, 16, -1, -1, -1, -1, -1, -1, -1, 24,25, 26, 27, 28, 29, 30, 31, 32, 33, 34,35, -1, 37, -1, -1, 40};/* YYSTOS[STATE-NUM] -- The (internal number of the) accessingsymbol of state STATE-NUM. */static const yytype_uint8 yystos[] ={0, 1, 42, 43, 49, 1, 5, 6, 7, 8,10, 11, 16, 24, 25, 26, 27, 28, 29, 30,31, 32, 33, 34, 35, 37, 40, 51, 52, 53,57, 50, 68, 0, 53, 58, 68, 62, 69, 64,72, 58, 71, 64, 61, 76, 65, 73, 64, 64,64, 64, 64, 64, 64, 64, 64, 67, 68, 3,53, 3, 1, 9, 10, 12, 13, 14, 15, 17,18, 20, 21, 22, 23, 35, 37, 38, 39, 40,41, 44, 54, 55, 56, 57, 77, 77, 77, 77,59, 68, 44, 46, 63, 78, 77, 64, 77, 64,64, 64, 64, 64, 64, 64, 64, 52, 37, 55,62, 71, 58, 64, 71, 60, 75, 61, 58, 65,65, 58, 67, 1, 45, 54, 55, 37, 77, 70,55, 63, 64, 64, 64, 64, 64, 64, 64, 36,63, 78, 58, 78, 77, 59, 44, 66, 59, 59,54, 45, 1, 45, 45, 54, 47, 64, 64, 64,64, 64, 64, 63, 58, 74, 59, 36, 3, 45,45, 64, 64, 64, 64, 64, 45, 54, 64, 64,64, 64, 45, 64, 64, 64, 64, 64, 64, 64,64, 64};#define yyerrok (yyerrstatus = 0)#define yyclearin (yychar = YYEMPTY)#define YYEMPTY (-2)#define YYEOF 0#define YYACCEPT goto yyacceptlab#define YYABORT goto yyabortlab#define YYERROR goto yyerrorlab/* Like YYERROR except do call yyerror. This remains here temporarilyto ease the transition to the new meaning of YYERROR, for GCC.Once GCC version 2 has supplanted version 1, this can go. However,YYFAIL appears to be in use. Nevertheless, it is formally deprecatedin Bison 2.4.2's NEWS entry, where a plan to phase it out isdiscussed. */#define YYFAIL goto yyerrlab#if defined YYFAIL/* This is here to suppress warnings from the GCC cpp's-Wunused-macros. Normally we don't worry about that warning, butsome users do, and we want to make it easy for users to removeYYFAIL uses, which will produce warnings from Bison 2.5. */#endif#define YYRECOVERING() (!!yyerrstatus)#define YYBACKUP(Token, Value) \do \if (yychar == YYEMPTY && yylen == 1) \{ \yychar = (Token); \yylval = (Value); \yytoken = YYTRANSLATE (yychar); \YYPOPSTACK (1); \goto yybackup; \} \else \{ \yyerror (YY_("syntax error: cannot back up")); \YYERROR; \} \while (YYID (0))#define YYTERROR 1#define YYERRCODE 256/* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N].If N is 0, then set CURRENT to the empty location which endsthe previous symbol: RHS[0] (always defined). */#define YYRHSLOC(Rhs, K) ((Rhs)[K])#ifndef YYLLOC_DEFAULT# define YYLLOC_DEFAULT(Current, Rhs, N) \do \if (YYID (N)) \{ \(Current).first_line = YYRHSLOC (Rhs, 1).first_line; \(Current).first_column = YYRHSLOC (Rhs, 1).first_column; \(Current).last_line = YYRHSLOC (Rhs, N).last_line; \(Current).last_column = YYRHSLOC (Rhs, N).last_column; \} \else \{ \(Current).first_line = (Current).last_line = \YYRHSLOC (Rhs, 0).last_line; \(Current).first_column = (Current).last_column = \YYRHSLOC (Rhs, 0).last_column; \} \while (YYID (0))#endif/* YY_LOCATION_PRINT -- Print the location on the stream.This macro was not mandated originally: define only if we knowwe won't break user code: when these are the locations we know. */#ifndef YY_LOCATION_PRINT# if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL# define YY_LOCATION_PRINT(File, Loc) \fprintf (File, "%d.%d-%d.%d", \(Loc).first_line, (Loc).first_column, \(Loc).last_line, (Loc).last_column)# else# define YY_LOCATION_PRINT(File, Loc) ((void) 0)# endif#endif/* YYLEX -- calling `yylex' with the right arguments. */#ifdef YYLEX_PARAM# define YYLEX yylex (YYLEX_PARAM)#else# define YYLEX yylex ()#endif/* Enable debugging if requested. */#if YYDEBUG# ifndef YYFPRINTF# include <stdio.h> /* INFRINGES ON USER NAME SPACE */# define YYFPRINTF fprintf# endif# define YYDPRINTF(Args) \do { \if (yydebug) \YYFPRINTF Args; \} while (YYID (0))# define YY_SYMBOL_PRINT(Title, Type, Value, Location) \do { \if (yydebug) \{ \YYFPRINTF (stderr, "%s ", Title); \yy_symbol_print (stderr, \Type, Value, Location); \YYFPRINTF (stderr, "\n"); \} \} while (YYID (0))/*--------------------------------.| Print this symbol on YYOUTPUT. |`--------------------------------*//*ARGSUSED*/#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static voidyy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp)#elsestatic voidyy_symbol_value_print (yyoutput, yytype, yyvaluep, yylocationp)FILE *yyoutput;int yytype;YYSTYPE const * const yyvaluep;YYLTYPE const * const yylocationp;#endif{if (!yyvaluep)return;YYUSE (yylocationp);# ifdef YYPRINTif (yytype < YYNTOKENS)YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep);# elseYYUSE (yyoutput);# endifswitch (yytype){default:break;}}/*--------------------------------.| Print this symbol on YYOUTPUT. |`--------------------------------*/#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static voidyy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep, YYLTYPE const * const yylocationp)#elsestatic voidyy_symbol_print (yyoutput, yytype, yyvaluep, yylocationp)FILE *yyoutput;int yytype;YYSTYPE const * const yyvaluep;YYLTYPE const * const yylocationp;#endif{if (yytype < YYNTOKENS)YYFPRINTF (yyoutput, "token %s (", yytname[yytype]);elseYYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]);YY_LOCATION_PRINT (yyoutput, *yylocationp);YYFPRINTF (yyoutput, ": ");yy_symbol_value_print (yyoutput, yytype, yyvaluep, yylocationp);YYFPRINTF (yyoutput, ")");}/*------------------------------------------------------------------.| yy_stack_print -- Print the state stack from its BOTTOM up to its || TOP (included). |`------------------------------------------------------------------*/#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static voidyy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop)#elsestatic voidyy_stack_print (yybottom, yytop)yytype_int16 *yybottom;yytype_int16 *yytop;#endif{YYFPRINTF (stderr, "Stack now");for (; yybottom <= yytop; yybottom++){int yybot = *yybottom;YYFPRINTF (stderr, " %d", yybot);}YYFPRINTF (stderr, "\n");}# define YY_STACK_PRINT(Bottom, Top) \do { \if (yydebug) \yy_stack_print ((Bottom), (Top)); \} while (YYID (0))/*------------------------------------------------.| Report that the YYRULE is going to be reduced. |`------------------------------------------------*/#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static voidyy_reduce_print (YYSTYPE *yyvsp, YYLTYPE *yylsp, int yyrule)#elsestatic voidyy_reduce_print (yyvsp, yylsp, yyrule)YYSTYPE *yyvsp;YYLTYPE *yylsp;int yyrule;#endif{int yynrhs = yyr2[yyrule];int yyi;unsigned long int yylno = yyrline[yyrule];YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n",yyrule - 1, yylno);/* The symbols being reduced. */for (yyi = 0; yyi < yynrhs; yyi++){YYFPRINTF (stderr, " $%d = ", yyi + 1);yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi],&(yyvsp[(yyi + 1) - (yynrhs)]), &(yylsp[(yyi + 1) - (yynrhs)]) );YYFPRINTF (stderr, "\n");}}# define YY_REDUCE_PRINT(Rule) \do { \if (yydebug) \yy_reduce_print (yyvsp, yylsp, Rule); \} while (YYID (0))/* Nonzero means print parse trace. It is left uninitialized so thatmultiple parsers can coexist. */int yydebug;#else /* !YYDEBUG */# define YYDPRINTF(Args)# define YY_SYMBOL_PRINT(Title, Type, Value, Location)# define YY_STACK_PRINT(Bottom, Top)# define YY_REDUCE_PRINT(Rule)#endif /* !YYDEBUG *//* YYINITDEPTH -- initial size of the parser's stacks. */#ifndef YYINITDEPTH# define YYINITDEPTH 200#endif/* YYMAXDEPTH -- maximum size the stacks can grow to (effective onlyif the built-in stack extension method is used).Do not make this value too large; the results are undefined ifYYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)evaluated with infinite-precision integer arithmetic. */#ifndef YYMAXDEPTH# define YYMAXDEPTH 10000#endif#if YYERROR_VERBOSE# ifndef yystrlen# if defined __GLIBC__ && defined _STRING_H# define yystrlen strlen# else/* Return the length of YYSTR. */#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static YYSIZE_Tyystrlen (const char *yystr)#elsestatic YYSIZE_Tyystrlen (yystr)const char *yystr;#endif{YYSIZE_T yylen;for (yylen = 0; yystr[yylen]; yylen++)continue;return yylen;}# endif# endif# ifndef yystpcpy# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE# define yystpcpy stpcpy# else/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' inYYDEST. */#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static char *yystpcpy (char *yydest, const char *yysrc)#elsestatic char *yystpcpy (yydest, yysrc)char *yydest;const char *yysrc;#endif{char *yyd = yydest;const char *yys = yysrc;while ((*yyd++ = *yys++) != '\0')continue;return yyd - 1;}# endif# endif# ifndef yytnamerr/* Copy to YYRES the contents of YYSTR after stripping away unnecessaryquotes and backslashes, so that it's suitable for yyerror. Theheuristic is that double-quoting is unnecessary unless the stringcontains an apostrophe, a comma, or backslash (other thanbackslash-backslash). YYSTR is taken from yytname. If YYRES isnull, do not copy; instead, return the length of what the resultwould have been. */static YYSIZE_Tyytnamerr (char *yyres, const char *yystr){if (*yystr == '"'){YYSIZE_T yyn = 0;char const *yyp = yystr;for (;;)switch (*++yyp){case '\'':case ',':goto do_not_strip_quotes;case '\\':if (*++yyp != '\\')goto do_not_strip_quotes;/* Fall through. */default:if (yyres)yyres[yyn] = *yyp;yyn++;break;case '"':if (yyres)yyres[yyn] = '\0';return yyn;}do_not_strip_quotes: ;}if (! yyres)return yystrlen (yystr);return yystpcpy (yyres, yystr) - yyres;}# endif/* Copy into YYRESULT an error message about the unexpected tokenYYCHAR while in state YYSTATE. Return the number of bytes copied,including the terminating null byte. If YYRESULT is null, do notcopy anything; just return the number of bytes that would becopied. As a special case, return 0 if an ordinary "syntax error"message will do. Return YYSIZE_MAXIMUM if overflow occurs duringsize calculation. */static YYSIZE_Tyysyntax_error (char *yyresult, int yystate, int yychar){int yyn = yypact[yystate];if (! (YYPACT_NINF < yyn && yyn <= YYLAST))return 0;else{int yytype = YYTRANSLATE (yychar);YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);YYSIZE_T yysize = yysize0;YYSIZE_T yysize1;int yysize_overflow = 0;enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];int yyx;# if 0/* This is so xgettext sees the translatable formats that areconstructed on the fly. */YY_("syntax error, unexpected %s");YY_("syntax error, unexpected %s, expecting %s");YY_("syntax error, unexpected %s, expecting %s or %s");YY_("syntax error, unexpected %s, expecting %s or %s or %s");YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");# endifchar *yyfmt;char const *yyf;static char const yyunexpected[] = "syntax error, unexpected %s";static char const yyexpecting[] = ", expecting %s";static char const yyor[] = " or %s";char yyformat[sizeof yyunexpected+ sizeof yyexpecting - 1+ ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)* (sizeof yyor - 1))];char const *yyprefix = yyexpecting;/* Start YYX at -YYN if negative to avoid negative indexes inYYCHECK. */int yyxbegin = yyn < 0 ? -yyn : 0;/* Stay within bounds of both yycheck and yytname. */int yychecklim = YYLAST - yyn + 1;int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;int yycount = 1;yyarg[0] = yytname[yytype];yyfmt = yystpcpy (yyformat, yyunexpected);for (yyx = yyxbegin; yyx < yyxend; ++yyx)if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR){if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM){yycount = 1;yysize = yysize0;yyformat[sizeof yyunexpected - 1] = '\0';break;}yyarg[yycount++] = yytname[yyx];yysize1 = yysize + yytnamerr (0, yytname[yyx]);yysize_overflow |= (yysize1 < yysize);yysize = yysize1;yyfmt = yystpcpy (yyfmt, yyprefix);yyprefix = yyor;}yyf = YY_(yyformat);yysize1 = yysize + yystrlen (yyf);yysize_overflow |= (yysize1 < yysize);yysize = yysize1;if (yysize_overflow)return YYSIZE_MAXIMUM;if (yyresult){/* Avoid sprintf, as that infringes on the user's name space.Don't have undefined behavior even if the translationproduced a string with the wrong number of "%s"s. */char *yyp = yyresult;int yyi = 0;while ((*yyp = *yyf) != '\0'){if (*yyp == '%' && yyf[1] == 's' && yyi < yycount){yyp += yytnamerr (yyp, yyarg[yyi++]);yyf += 2;}else{yyp++;yyf++;}}}return yysize;}}#endif /* YYERROR_VERBOSE *//*-----------------------------------------------.| Release the memory associated to this symbol. |`-----------------------------------------------*//*ARGSUSED*/#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)static voidyydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp)#elsestatic voidyydestruct (yymsg, yytype, yyvaluep, yylocationp)const char *yymsg;int yytype;YYSTYPE *yyvaluep;YYLTYPE *yylocationp;#endif{YYUSE (yyvaluep);YYUSE (yylocationp);if (!yymsg)yymsg = "Deleting";YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);switch (yytype){case 5: /* "SECTIONHEADER" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1529 "gramRd.c"break;case 6: /* "RSECTIONHEADER" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1538 "gramRd.c"break;case 7: /* "VSECTIONHEADER" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1547 "gramRd.c"break;case 8: /* "SECTIONHEADER2" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1556 "gramRd.c"break;case 9: /* "RCODEMACRO" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1565 "gramRd.c"break;case 10: /* "SEXPR" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1574 "gramRd.c"break;case 12: /* "LATEXMACRO" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1583 "gramRd.c"break;case 13: /* "VERBMACRO" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1592 "gramRd.c"break;case 14: /* "OPTMACRO" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1601 "gramRd.c"break;case 15: /* "ESCAPE" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1610 "gramRd.c"break;case 16: /* "LISTSECTION" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1619 "gramRd.c"break;case 17: /* "ITEMIZE" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1628 "gramRd.c"break;case 18: /* "DESCRIPTION" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1637 "gramRd.c"break;case 19: /* "NOITEM" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1646 "gramRd.c"break;case 20: /* "LATEXMACRO2" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1655 "gramRd.c"break;case 21: /* "VERBMACRO2" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1664 "gramRd.c"break;case 22: /* "VERBLATEX" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1673 "gramRd.c"break;case 23: /* "LATEXMACRO3" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1682 "gramRd.c"break;case 24: /* "NEWCOMMAND" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1691 "gramRd.c"break;case 25: /* "USERMACRO" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1700 "gramRd.c"break;case 26: /* "USERMACRO1" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1709 "gramRd.c"break;case 27: /* "USERMACRO2" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1718 "gramRd.c"break;case 28: /* "USERMACRO3" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1727 "gramRd.c"break;case 29: /* "USERMACRO4" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1736 "gramRd.c"break;case 30: /* "USERMACRO5" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1745 "gramRd.c"break;case 31: /* "USERMACRO6" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1754 "gramRd.c"break;case 32: /* "USERMACRO7" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1763 "gramRd.c"break;case 33: /* "USERMACRO8" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1772 "gramRd.c"break;case 34: /* "USERMACRO9" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1781 "gramRd.c"break;case 35: /* "IFDEF" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1790 "gramRd.c"break;case 36: /* "ENDIF" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1799 "gramRd.c"break;case 37: /* "TEXT" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1808 "gramRd.c"break;case 38: /* "RCODE" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1817 "gramRd.c"break;case 39: /* "VERB" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1826 "gramRd.c"break;case 40: /* "COMMENT" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1835 "gramRd.c"break;case 41: /* "UNKNOWN" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1844 "gramRd.c"break;case 42: /* "STARTFILE" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1853 "gramRd.c"break;case 43: /* "STARTFRAGMENT" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1862 "gramRd.c"break;case 54: /* "ArgItems" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1871 "gramRd.c"break;case 58: /* "LatexArg" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1880 "gramRd.c"break;case 63: /* "RLikeArg2" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1889 "gramRd.c"break;case 65: /* "VerbatimArg1" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1898 "gramRd.c"break;case 66: /* "VerbatimArg2" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1907 "gramRd.c"break;case 67: /* "IfDefTarget" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1916 "gramRd.c"break;case 68: /* "goLatexLike" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1925 "gramRd.c"break;case 69: /* "goRLike" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1934 "gramRd.c"break;case 70: /* "goRLike2" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1943 "gramRd.c"break;case 71: /* "goOption" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1952 "gramRd.c"break;case 72: /* "goVerbatim" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1961 "gramRd.c"break;case 73: /* "goVerbatim1" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1970 "gramRd.c"break;case 74: /* "goVerbatim2" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1979 "gramRd.c"break;case 75: /* "goItem0" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1988 "gramRd.c"break;case 76: /* "goItem2" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1997 "gramRd.c"break;case 78: /* "Option" *//* Line 1009 of yacc.c */#line 184 "gramRd.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 2006 "gramRd.c"break;default:break;}}/* Prevent warnings from -Wmissing-prototypes. */#ifdef YYPARSE_PARAM#if defined __STDC__ || defined __cplusplusint yyparse (void *YYPARSE_PARAM);#elseint yyparse ();#endif#else /* ! YYPARSE_PARAM */#if defined __STDC__ || defined __cplusplusint yyparse (void);#elseint yyparse ();#endif#endif /* ! YYPARSE_PARAM *//* The lookahead symbol. */int yychar;/* The semantic value of the lookahead symbol. */YYSTYPE yylval;/* Location data for the lookahead symbol. */YYLTYPE yylloc;/* Number of syntax errors so far. */int yynerrs;/*-------------------------.| yyparse or yypush_parse. |`-------------------------*/#ifdef YYPARSE_PARAM#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)intyyparse (void *YYPARSE_PARAM)#elseintyyparse (YYPARSE_PARAM)void *YYPARSE_PARAM;#endif#else /* ! YYPARSE_PARAM */#if (defined __STDC__ || defined __C99__FUNC__ \|| defined __cplusplus || defined _MSC_VER)intyyparse (void)#elseintyyparse ()#endif#endif{int yystate;/* Number of tokens to shift before error messages enabled. */int yyerrstatus;/* The stacks and their tools:`yyss': related to states.`yyvs': related to semantic values.`yyls': related to locations.Refer to the stacks thru separate pointers, to allow yyoverflowto reallocate them elsewhere. *//* The state stack. */yytype_int16 yyssa[YYINITDEPTH];yytype_int16 *yyss;yytype_int16 *yyssp;/* The semantic value stack. */YYSTYPE yyvsa[YYINITDEPTH];YYSTYPE *yyvs;YYSTYPE *yyvsp;/* The location stack. */YYLTYPE yylsa[YYINITDEPTH];YYLTYPE *yyls;YYLTYPE *yylsp;/* The locations where the error started and ended. */YYLTYPE yyerror_range[2];YYSIZE_T yystacksize;int yyn;int yyresult;/* Lookahead token as an internal (translated) token number. */int yytoken;/* The variables used to return semantic value and location from theaction routines. */YYSTYPE yyval;YYLTYPE yyloc;#if YYERROR_VERBOSE/* Buffer for error messages, and its allocated size. */char yymsgbuf[128];char *yymsg = yymsgbuf;YYSIZE_T yymsg_alloc = sizeof yymsgbuf;#endif#define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N), yylsp -= (N))/* The number of symbols on the RHS of the reduced rule.Keep to zero when no symbol should be popped. */int yylen = 0;yytoken = 0;yyss = yyssa;yyvs = yyvsa;yyls = yylsa;yystacksize = YYINITDEPTH;YYDPRINTF ((stderr, "Starting parse\n"));yystate = 0;yyerrstatus = 0;yynerrs = 0;yychar = YYEMPTY; /* Cause a token to be read. *//* Initialize stack pointers.Waste one element of value and location stackso that they stay on the same level as the state stack.The wasted elements are never initialized. */yyssp = yyss;yyvsp = yyvs;yylsp = yyls;#if defined YYLTYPE_IS_TRIVIAL && YYLTYPE_IS_TRIVIAL/* Initialize the default location before parsing starts. */yylloc.first_line = yylloc.last_line = 1;yylloc.first_column = yylloc.last_column = 1;#endifgoto yysetstate;/*------------------------------------------------------------.| yynewstate -- Push a new state, which is found in yystate. |`------------------------------------------------------------*/yynewstate:/* In all cases, when you get here, the value and location stackshave just been pushed. So pushing a state here evens the stacks. */yyssp++;yysetstate:*yyssp = yystate;if (yyss + yystacksize - 1 <= yyssp){/* Get the current used size of the three stacks, in elements. */YYSIZE_T yysize = yyssp - yyss + 1;#ifdef yyoverflow{/* Give user a chance to reallocate the stack. Use copies ofthese so that the &'s don't force the real ones intomemory. */YYSTYPE *yyvs1 = yyvs;yytype_int16 *yyss1 = yyss;YYLTYPE *yyls1 = yyls;/* Each stack pointer address is followed by the size of thedata in use in that stack, in bytes. This used to be aconditional around just the two extra args, but that mightbe undefined if yyoverflow is a macro. */yyoverflow (YY_("memory exhausted"),&yyss1, yysize * sizeof (*yyssp),&yyvs1, yysize * sizeof (*yyvsp),&yyls1, yysize * sizeof (*yylsp),&yystacksize);yyls = yyls1;yyss = yyss1;yyvs = yyvs1;}#else /* no yyoverflow */# ifndef YYSTACK_RELOCATEgoto yyexhaustedlab;# else/* Extend the stack our own way. */if (YYMAXDEPTH <= yystacksize)goto yyexhaustedlab;yystacksize *= 2;if (YYMAXDEPTH < yystacksize)yystacksize = YYMAXDEPTH;{yytype_int16 *yyss1 = yyss;union yyalloc *yyptr =(union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize));if (! yyptr)goto yyexhaustedlab;YYSTACK_RELOCATE (yyss_alloc, yyss);YYSTACK_RELOCATE (yyvs_alloc, yyvs);YYSTACK_RELOCATE (yyls_alloc, yyls);# undef YYSTACK_RELOCATEif (yyss1 != yyssa)YYSTACK_FREE (yyss1);}# endif#endif /* no yyoverflow */yyssp = yyss + yysize - 1;yyvsp = yyvs + yysize - 1;yylsp = yyls + yysize - 1;YYDPRINTF ((stderr, "Stack size increased to %lu\n",(unsigned long int) yystacksize));if (yyss + yystacksize - 1 <= yyssp)YYABORT;}YYDPRINTF ((stderr, "Entering state %d\n", yystate));if (yystate == YYFINAL)YYACCEPT;goto yybackup;/*-----------.| yybackup. |`-----------*/yybackup:/* Do appropriate processing given the current state. Read alookahead token if we need one and don't already have one. *//* First try to decide what to do without reference to lookahead token. */yyn = yypact[yystate];if (yyn == YYPACT_NINF)goto yydefault;/* Not known => get a lookahead token if don't already have one. *//* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */if (yychar == YYEMPTY){YYDPRINTF ((stderr, "Reading a token: "));yychar = YYLEX;}if (yychar <= YYEOF){yychar = yytoken = YYEOF;YYDPRINTF ((stderr, "Now at end of input.\n"));}else{yytoken = YYTRANSLATE (yychar);YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc);}/* If the proper action on seeing token YYTOKEN is to reduce or todetect an error, take that action. */yyn += yytoken;if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken)goto yydefault;yyn = yytable[yyn];if (yyn <= 0){if (yyn == 0 || yyn == YYTABLE_NINF)goto yyerrlab;yyn = -yyn;goto yyreduce;}/* Count tokens shifted since error; after three, turn off errorstatus. */if (yyerrstatus)yyerrstatus--;/* Shift the lookahead token. */YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc);/* Discard the shifted token. */yychar = YYEMPTY;yystate = yyn;*++yyvsp = yylval;*++yylsp = yylloc;goto yynewstate;/*-----------------------------------------------------------.| yydefault -- do the default action for the current state. |`-----------------------------------------------------------*/yydefault:yyn = yydefact[yystate];if (yyn == 0)goto yyerrlab;goto yyreduce;/*-----------------------------.| yyreduce -- Do a reduction. |`-----------------------------*/yyreduce:/* yyn is the number of a rule to reduce with. */yylen = yyr2[yyn];/* If YYLEN is nonzero, implement the default value of the action:`$$ = $1'.Otherwise, the following line sets YYVAL to garbage.This behavior is undocumented and Bisonusers should not rely upon it. Assigning to YYVALunconditionally makes the parser a bit smaller, and it avoids aGCC warning that YYVAL may be used uninitialized. */yyval = yyvsp[1-yylen];/* Default location. */YYLLOC_DEFAULT (yyloc, (yylsp - yylen), yylen);YY_REDUCE_PRINT (yyn);switch (yyn){case 2:/* Line 1464 of yacc.c */#line 196 "gramRd.y"{ xxsavevalue((yyvsp[(2) - (3)]), &(yyloc)); UNPROTECT_PTR((yyvsp[(1) - (3)])); return 0; ;}break;case 3:/* Line 1464 of yacc.c */#line 197 "gramRd.y"{ xxsavevalue((yyvsp[(2) - (3)]), &(yyloc)); UNPROTECT_PTR((yyvsp[(1) - (3)])); return 0; ;}break;case 4:/* Line 1464 of yacc.c */#line 198 "gramRd.y"{ PROTECT(Value = R_NilValue); YYABORT; ;}break;case 5:/* Line 1464 of yacc.c */#line 201 "gramRd.y"{ (yyval) = (yyvsp[(2) - (2)]); UNPROTECT_PTR((yyvsp[(1) - (2)])); ;}break;case 6:/* Line 1464 of yacc.c */#line 204 "gramRd.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 7:/* Line 1464 of yacc.c */#line 207 "gramRd.y"{ (yyval) = xxnewlist((yyvsp[(1) - (1)])); ;}break;case 8:/* Line 1464 of yacc.c */#line 208 "gramRd.y"{ (yyval) = xxlist((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)])); ;}break;case 9:/* Line 1464 of yacc.c */#line 210 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)]), STATIC, &(yyloc)); ;}break;case 10:/* Line 1464 of yacc.c */#line 211 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)]), HAS_SEXPR, &(yyloc)); ;}break;case 11:/* Line 1464 of yacc.c */#line 212 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)]), STATIC, &(yyloc)); ;}break;case 12:/* Line 1464 of yacc.c */#line 213 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)]), STATIC, &(yyloc)); ;}break;case 13:/* Line 1464 of yacc.c */#line 214 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)]), STATIC, &(yyloc)); ;}break;case 14:/* Line 1464 of yacc.c */#line 215 "gramRd.y"{ (yyval) = xxmarkup2((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), 2, STATIC, &(yyloc)); ;}break;case 15:/* Line 1464 of yacc.c */#line 216 "gramRd.y"{ (yyval) = xxmarkup2((yyvsp[(1) - (4)]), (yyvsp[(2) - (4)]), (yyvsp[(3) - (4)]), 2, HAS_IFDEF, &(yyloc)); UNPROTECT_PTR((yyvsp[(4) - (4)])); ;}break;case 16:/* Line 1464 of yacc.c */#line 217 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (3)]), (yyvsp[(3) - (3)]), HAS_SEXPR, &(yyloc)); xxpopMode((yyvsp[(2) - (3)])); ;}break;case 17:/* Line 1464 of yacc.c */#line 218 "gramRd.y"{ (yyval) = xxOptionmarkup((yyvsp[(1) - (4)]), (yyvsp[(3) - (4)]), (yyvsp[(4) - (4)]), HAS_SEXPR, &(yyloc)); xxpopMode((yyvsp[(2) - (4)])); ;}break;case 18:/* Line 1464 of yacc.c */#line 219 "gramRd.y"{ (yyval) = xxtag((yyvsp[(1) - (1)]), COMMENT, &(yyloc)); ;}break;case 19:/* Line 1464 of yacc.c */#line 220 "gramRd.y"{ (yyval) = xxtag((yyvsp[(1) - (1)]), TEXT, &(yyloc)); ;}break;case 20:/* Line 1464 of yacc.c */#line 221 "gramRd.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 21:/* Line 1464 of yacc.c */#line 222 "gramRd.y"{ (yyval) = (yyvsp[(2) - (2)]); ;}break;case 22:/* Line 1464 of yacc.c */#line 224 "gramRd.y"{ (yyval) = xxnewlist((yyvsp[(1) - (1)])); ;}break;case 23:/* Line 1464 of yacc.c */#line 225 "gramRd.y"{ (yyval) = xxlist((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)])); ;}break;case 24:/* Line 1464 of yacc.c */#line 227 "gramRd.y"{ (yyval) = xxtag((yyvsp[(1) - (1)]), TEXT, &(yyloc)); ;}break;case 25:/* Line 1464 of yacc.c */#line 228 "gramRd.y"{ (yyval) = xxtag((yyvsp[(1) - (1)]), RCODE, &(yyloc)); ;}break;case 26:/* Line 1464 of yacc.c */#line 229 "gramRd.y"{ (yyval) = xxtag((yyvsp[(1) - (1)]), VERB, &(yyloc)); ;}break;case 27:/* Line 1464 of yacc.c */#line 230 "gramRd.y"{ (yyval) = xxtag((yyvsp[(1) - (1)]), COMMENT, &(yyloc)); ;}break;case 28:/* Line 1464 of yacc.c */#line 231 "gramRd.y"{ (yyval) = xxtag((yyvsp[(1) - (1)]), UNKNOWN, &(yyloc)); yyerror(yyunknown); ;}break;case 29:/* Line 1464 of yacc.c */#line 232 "gramRd.y"{ (yyval) = xxmarkup(R_NilValue, (yyvsp[(1) - (1)]), STATIC, &(yyloc)); ;}break;case 30:/* Line 1464 of yacc.c */#line 233 "gramRd.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 31:/* Line 1464 of yacc.c */#line 234 "gramRd.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 32:/* Line 1464 of yacc.c */#line 235 "gramRd.y"{ (yyval) = (yyvsp[(2) - (2)]); ;}break;case 33:/* Line 1464 of yacc.c */#line 237 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)]), STATIC, &(yyloc)); ;}break;case 34:/* Line 1464 of yacc.c */#line 238 "gramRd.y"{ (yyval) = xxmarkup2((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), 2, STATIC, &(yyloc)); ;}break;case 35:/* Line 1464 of yacc.c */#line 239 "gramRd.y"{ (yyval) = xxmarkup3((yyvsp[(1) - (4)]), (yyvsp[(2) - (4)]), (yyvsp[(3) - (4)]), (yyvsp[(4) - (4)]), STATIC, &(yyloc)); ;}break;case 36:/* Line 1464 of yacc.c */#line 240 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)]), STATIC, &(yyloc)); ;}break;case 37:/* Line 1464 of yacc.c */#line 241 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)]), STATIC, &(yyloc)); ;}break;case 38:/* Line 1464 of yacc.c */#line 242 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (3)]), (yyvsp[(3) - (3)]), STATIC, &(yyloc)); xxpopMode((yyvsp[(2) - (3)])); ;}break;case 39:/* Line 1464 of yacc.c */#line 243 "gramRd.y"{ (yyval) = xxOptionmarkup((yyvsp[(1) - (4)]), (yyvsp[(3) - (4)]), (yyvsp[(4) - (4)]), STATIC, &(yyloc)); xxpopMode((yyvsp[(2) - (4)])); ;}break;case 40:/* Line 1464 of yacc.c */#line 244 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)]), STATIC, &(yyloc)); ;}break;case 41:/* Line 1464 of yacc.c */#line 245 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (3)]), (yyvsp[(3) - (3)]), HAS_SEXPR, &(yyloc)); xxpopMode((yyvsp[(2) - (3)])); ;}break;case 42:/* Line 1464 of yacc.c */#line 246 "gramRd.y"{ (yyval) = xxOptionmarkup((yyvsp[(1) - (4)]), (yyvsp[(3) - (4)]), (yyvsp[(4) - (4)]), HAS_SEXPR, &(yyloc)); xxpopMode((yyvsp[(2) - (4)])); ;}break;case 43:/* Line 1464 of yacc.c */#line 247 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)]), STATIC, &(yyloc)); ;}break;case 44:/* Line 1464 of yacc.c */#line 248 "gramRd.y"{ (yyval) = xxmarkup2((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)]), R_NilValue, 1, STATIC, &(yyloc)); ;}break;case 45:/* Line 1464 of yacc.c */#line 249 "gramRd.y"{ (yyval) = xxmarkup2((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), 2, STATIC, &(yyloc)); ;}break;case 46:/* Line 1464 of yacc.c */#line 250 "gramRd.y"{ (yyval) = xxmarkup((yyvsp[(1) - (1)]), R_NilValue, STATIC, &(yyloc)); ;}break;case 47:/* Line 1464 of yacc.c */#line 251 "gramRd.y"{ (yyval) = xxmarkup2((yyvsp[(1) - (4)]), (yyvsp[(2) - (4)]), (yyvsp[(3) - (4)]), 2, HAS_IFDEF, &(yyloc)); UNPROTECT_PTR((yyvsp[(4) - (4)])); ;}break;case 48:/* Line 1464 of yacc.c */#line 252 "gramRd.y"{ (yyval) = xxmarkup2((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), 2, STATIC, &(yyloc)); ;}break;case 49:/* Line 1464 of yacc.c */#line 254 "gramRd.y"{ (yyval) = xxnewcommand((yyvsp[(1) - (3)]), (yyvsp[(2) - (3)]), (yyvsp[(3) - (3)]), &(yyloc)); ;}break;case 50:/* Line 1464 of yacc.c */#line 255 "gramRd.y"{ (yyval) = xxusermacro((yyvsp[(1) - (1)]), xxnewlist(NULL), &(yyloc)); ;}break;case 51:/* Line 1464 of yacc.c */#line 256 "gramRd.y"{ (yyval) = xxusermacro((yyvsp[(1) - (2)]), xxnewlist((yyvsp[(2) - (2)])), &(yyloc)); ;}break;case 52:/* Line 1464 of yacc.c */#line 258 "gramRd.y"{ (yyval) = xxusermacro((yyvsp[(1) - (3)]), xxnewlist2((yyvsp[(2) - (3)]), (yyvsp[(3) - (3)])), &(yyloc)); ;}break;case 53:/* Line 1464 of yacc.c */#line 260 "gramRd.y"{ (yyval) = xxusermacro((yyvsp[(1) - (4)]), xxnewlist3((yyvsp[(2) - (4)]), (yyvsp[(3) - (4)]), (yyvsp[(4) - (4)])), &(yyloc)); ;}break;case 54:/* Line 1464 of yacc.c */#line 262 "gramRd.y"{ (yyval) = xxusermacro((yyvsp[(1) - (5)]), xxnewlist4((yyvsp[(2) - (5)]), (yyvsp[(3) - (5)]), (yyvsp[(4) - (5)]), (yyvsp[(5) - (5)])), &(yyloc)); ;}break;case 55:/* Line 1464 of yacc.c */#line 264 "gramRd.y"{ (yyval) = xxusermacro((yyvsp[(1) - (6)]), xxnewlist5((yyvsp[(2) - (6)]), (yyvsp[(3) - (6)]), (yyvsp[(4) - (6)]), (yyvsp[(5) - (6)]), (yyvsp[(6) - (6)])), &(yyloc)); ;}break;case 56:/* Line 1464 of yacc.c */#line 266 "gramRd.y"{ (yyval) = xxusermacro((yyvsp[(1) - (7)]), xxnewlist6((yyvsp[(2) - (7)]), (yyvsp[(3) - (7)]), (yyvsp[(4) - (7)]), (yyvsp[(5) - (7)]), (yyvsp[(6) - (7)]), (yyvsp[(7) - (7)])), &(yyloc)); ;}break;case 57:/* Line 1464 of yacc.c */#line 269 "gramRd.y"{ (yyval) = xxusermacro((yyvsp[(1) - (9)]), xxnewlist7((yyvsp[(2) - (9)]), (yyvsp[(3) - (9)]), (yyvsp[(4) - (9)]), (yyvsp[(5) - (9)]), (yyvsp[(6) - (9)]), (yyvsp[(7) - (9)]), (yyvsp[(8) - (9)])), &(yyloc)); ;}break;case 58:/* Line 1464 of yacc.c */#line 272 "gramRd.y"{ (yyval) = xxusermacro((yyvsp[(1) - (10)]), xxnewlist8((yyvsp[(2) - (10)]), (yyvsp[(3) - (10)]), (yyvsp[(4) - (10)]), (yyvsp[(5) - (10)]), (yyvsp[(6) - (10)]), (yyvsp[(7) - (10)]), (yyvsp[(8) - (10)]), (yyvsp[(9) - (10)])), &(yyloc)); ;}break;case 59:/* Line 1464 of yacc.c */#line 275 "gramRd.y"{ (yyval) = xxusermacro((yyvsp[(1) - (11)]), xxnewlist9((yyvsp[(2) - (11)]), (yyvsp[(3) - (11)]), (yyvsp[(4) - (11)]), (yyvsp[(5) - (11)]), (yyvsp[(6) - (11)]), (yyvsp[(7) - (11)]), (yyvsp[(8) - (11)]), (yyvsp[(9) - (11)]), (yyvsp[(10) - (11)])), &(yyloc)); ;}break;case 60:/* Line 1464 of yacc.c */#line 278 "gramRd.y"{ xxpopMode((yyvsp[(1) - (2)])); (yyval) = (yyvsp[(2) - (2)]); ;}break;case 61:/* Line 1464 of yacc.c */#line 280 "gramRd.y"{ xxpopMode((yyvsp[(1) - (2)])); (yyval) = (yyvsp[(2) - (2)]); ;}break;case 62:/* Line 1464 of yacc.c */#line 281 "gramRd.y"{ xxpopMode((yyvsp[(1) - (2)])); (yyval) = xxnewlist((yyvsp[(2) - (2)]));if(wCalls)warning(_("bad markup (extra space?) at %s:%d:%d"),xxBasename, (yylsp[(2) - (2)]).first_line, (yylsp[(2) - (2)]).first_column);elsewarningcall(R_NilValue, _("bad markup (extra space?) at %s:%d:%d"),xxBasename, (yylsp[(2) - (2)]).first_line, (yylsp[(2) - (2)]).first_column);;}break;case 63:/* Line 1464 of yacc.c */#line 290 "gramRd.y"{ xxpopMode((yyvsp[(1) - (2)])); (yyval) = (yyvsp[(2) - (2)]); ;}break;case 64:/* Line 1464 of yacc.c */#line 292 "gramRd.y"{ xxpopMode((yyvsp[(1) - (2)])); (yyval) = (yyvsp[(2) - (2)]); ;}break;case 65:/* Line 1464 of yacc.c */#line 294 "gramRd.y"{ xxpopMode((yyvsp[(1) - (2)])); (yyval) = (yyvsp[(2) - (2)]); ;}break;case 66:/* Line 1464 of yacc.c */#line 298 "gramRd.y"{ xxpopMode((yyvsp[(2) - (4)])); (yyval) = (yyvsp[(3) - (4)]); ;}break;case 67:/* Line 1464 of yacc.c */#line 299 "gramRd.y"{ xxpopMode((yyvsp[(2) - (3)])); (yyval) = xxnewlist(NULL); ;}break;case 68:/* Line 1464 of yacc.c */#line 301 "gramRd.y"{ xxpopMode((yyvsp[(1) - (2)])); (yyval) = (yyvsp[(2) - (2)]); ;}break;case 69:/* Line 1464 of yacc.c */#line 303 "gramRd.y"{ xxpopMode((yyvsp[(1) - (2)])); (yyval) = (yyvsp[(2) - (2)]); ;}break;case 70:/* Line 1464 of yacc.c */#line 307 "gramRd.y"{ xxpopMode((yyvsp[(2) - (4)])); (yyval) = (yyvsp[(3) - (4)]); ;}break;case 71:/* Line 1464 of yacc.c */#line 308 "gramRd.y"{ xxpopMode((yyvsp[(2) - (3)])); (yyval) = xxnewlist(NULL); ;}break;case 72:/* Line 1464 of yacc.c */#line 310 "gramRd.y"{ xxpopMode((yyvsp[(1) - (2)])); (yyval) = xxnewlist(xxtag((yyvsp[(2) - (2)]), TEXT, &(yyloc))); ;}break;case 73:/* Line 1464 of yacc.c */#line 313 "gramRd.y"{ (yyval) = xxpushMode(LATEXLIKE, UNKNOWN, FALSE); ;}break;case 74:/* Line 1464 of yacc.c */#line 315 "gramRd.y"{ (yyval) = xxpushMode(RLIKE, UNKNOWN, FALSE); ;}break;case 75:/* Line 1464 of yacc.c */#line 317 "gramRd.y"{ xxbraceDepth--; (yyval) = xxpushMode(RLIKE, UNKNOWN, FALSE); xxbraceDepth++; ;}break;case 76:/* Line 1464 of yacc.c */#line 319 "gramRd.y"{ (yyval) = xxpushMode(INOPTION, UNKNOWN, FALSE); ;}break;case 77:/* Line 1464 of yacc.c */#line 321 "gramRd.y"{ (yyval) = xxpushMode(VERBATIM, UNKNOWN, FALSE); ;}break;case 78:/* Line 1464 of yacc.c */#line 323 "gramRd.y"{ (yyval) = xxpushMode(VERBATIM, UNKNOWN, TRUE); ;}break;case 79:/* Line 1464 of yacc.c */#line 325 "gramRd.y"{ xxbraceDepth--; (yyval) = xxpushMode(VERBATIM, UNKNOWN, FALSE); xxbraceDepth++; ;}break;case 80:/* Line 1464 of yacc.c */#line 327 "gramRd.y"{ (yyval) = xxpushMode(LATEXLIKE, ESCAPE, FALSE); ;}break;case 81:/* Line 1464 of yacc.c */#line 329 "gramRd.y"{ (yyval) = xxpushMode(LATEXLIKE, LATEXMACRO2, FALSE); ;}break;case 82:/* Line 1464 of yacc.c */#line 331 "gramRd.y"{ (yyval) = (yyvsp[(2) - (3)]); ;}break;case 83:/* Line 1464 of yacc.c */#line 332 "gramRd.y"{ (yyval) = xxnewlist(NULL); ;}break;case 84:/* Line 1464 of yacc.c */#line 333 "gramRd.y"{ (yyval) = (yyvsp[(2) - (4)]); ;}break;case 85:/* Line 1464 of yacc.c */#line 334 "gramRd.y"{ (yyval) = xxnewlist(NULL); ;}break;case 86:/* Line 1464 of yacc.c */#line 335 "gramRd.y"{ (yyval) = (yyvsp[(2) - (4)]); ;}break;case 87:/* Line 1464 of yacc.c */#line 337 "gramRd.y"{ (yyval) = (yyvsp[(2) - (3)]); ;}break;/* Line 1464 of yacc.c */#line 2947 "gramRd.c"default: break;}YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc);YYPOPSTACK (yylen);yylen = 0;YY_STACK_PRINT (yyss, yyssp);*++yyvsp = yyval;*++yylsp = yyloc;/* Now `shift' the result of the reduction. Determine what statethat goes to, based on the state we popped back to and the rulenumber reduced by. */yyn = yyr1[yyn];yystate = yypgoto[yyn - YYNTOKENS] + *yyssp;if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp)yystate = yytable[yystate];elseyystate = yydefgoto[yyn - YYNTOKENS];goto yynewstate;/*------------------------------------.| yyerrlab -- here on detecting error |`------------------------------------*/yyerrlab:/* If not already recovering from an error, report this error. */if (!yyerrstatus){++yynerrs;#if ! YYERROR_VERBOSEyyerror (YY_("syntax error"));#else{YYSIZE_T yysize = yysyntax_error (0, yystate, yychar);if (yymsg_alloc < yysize && yymsg_alloc < YYSTACK_ALLOC_MAXIMUM){YYSIZE_T yyalloc = 2 * yysize;if (! (yysize <= yyalloc && yyalloc <= YYSTACK_ALLOC_MAXIMUM))yyalloc = YYSTACK_ALLOC_MAXIMUM;if (yymsg != yymsgbuf)YYSTACK_FREE (yymsg);yymsg = (char *) YYSTACK_ALLOC (yyalloc);if (yymsg)yymsg_alloc = yyalloc;else{yymsg = yymsgbuf;yymsg_alloc = sizeof yymsgbuf;}}if (0 < yysize && yysize <= yymsg_alloc){(void) yysyntax_error (yymsg, yystate, yychar);yyerror (yymsg);}else{yyerror (YY_("syntax error"));if (yysize != 0)goto yyexhaustedlab;}}#endif}yyerror_range[0] = yylloc;if (yyerrstatus == 3){/* If just tried and failed to reuse lookahead token after anerror, discard it. */if (yychar <= YYEOF){/* Return failure if at end of input. */if (yychar == YYEOF)YYABORT;}else{yydestruct ("Error: discarding",yytoken, &yylval, &yylloc);yychar = YYEMPTY;}}/* Else will try to reuse lookahead token after shifting the errortoken. */goto yyerrlab1;/*---------------------------------------------------.| yyerrorlab -- error raised explicitly by YYERROR. |`---------------------------------------------------*/yyerrorlab:/* Pacify compilers like GCC when the user code never invokesYYERROR and the label yyerrorlab therefore never appears in usercode. */if (/*CONSTCOND*/ 0)goto yyerrorlab;yyerror_range[0] = yylsp[1-yylen];/* Do not reclaim the symbols of the rule which action triggeredthis YYERROR. */YYPOPSTACK (yylen);yylen = 0;YY_STACK_PRINT (yyss, yyssp);yystate = *yyssp;goto yyerrlab1;/*-------------------------------------------------------------.| yyerrlab1 -- common code for both syntax error and YYERROR. |`-------------------------------------------------------------*/yyerrlab1:yyerrstatus = 3; /* Each real token shifted decrements this. */for (;;){yyn = yypact[yystate];if (yyn != YYPACT_NINF){yyn += YYTERROR;if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR){yyn = yytable[yyn];if (0 < yyn)break;}}/* Pop the current state because it cannot handle the error token. */if (yyssp == yyss)YYABORT;yyerror_range[0] = *yylsp;yydestruct ("Error: popping",yystos[yystate], yyvsp, yylsp);YYPOPSTACK (1);yystate = *yyssp;YY_STACK_PRINT (yyss, yyssp);}*++yyvsp = yylval;yyerror_range[1] = yylloc;/* Using YYLLOC is tempting, but would change the location ofthe lookahead. YYLOC is available though. */YYLLOC_DEFAULT (yyloc, (yyerror_range - 1), 2);*++yylsp = yyloc;/* Shift the error token. */YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp);yystate = yyn;goto yynewstate;/*-------------------------------------.| yyacceptlab -- YYACCEPT comes here. |`-------------------------------------*/yyacceptlab:yyresult = 0;goto yyreturn;/*-----------------------------------.| yyabortlab -- YYABORT comes here. |`-----------------------------------*/yyabortlab:yyresult = 1;goto yyreturn;#if !defined(yyoverflow) || YYERROR_VERBOSE/*-------------------------------------------------.| yyexhaustedlab -- memory exhaustion comes here. |`-------------------------------------------------*/yyexhaustedlab:yyerror (YY_("memory exhausted"));yyresult = 2;/* Fall through. */#endifyyreturn:if (yychar != YYEMPTY)yydestruct ("Cleanup: discarding lookahead",yytoken, &yylval, &yylloc);/* Do not reclaim the symbols of the rule which action triggeredthis YYABORT or YYACCEPT. */YYPOPSTACK (yylen);YY_STACK_PRINT (yyss, yyssp);while (yyssp != yyss){yydestruct ("Cleanup: popping",yystos[*yyssp], yyvsp, yylsp);YYPOPSTACK (1);}#ifndef yyoverflowif (yyss != yyssa)YYSTACK_FREE (yyss);#endif#if YYERROR_VERBOSEif (yymsg != yymsgbuf)YYSTACK_FREE (yymsg);#endif/* Make sure YYID is used. */return YYID (yyresult);}/* Line 1684 of yacc.c */#line 339 "gramRd.y"static SEXP xxpushMode(int newmode, int newitem, int neweqn){SEXP ans;PROTECT(ans = allocVector(INTSXP, 7));INTEGER(ans)[0] = xxmode; /* Lexer mode */INTEGER(ans)[1] = xxitemType; /* What is \item? */INTEGER(ans)[2] = xxbraceDepth; /* Brace depth used in RCODE and VERBATIM */INTEGER(ans)[3] = xxinRString; /* Quote char that started a string */INTEGER(ans)[4] = xxQuoteLine; /* Where the quote was */INTEGER(ans)[5] = xxQuoteCol; /* " */INTEGER(ans)[6] = xxinEqn; /* In the first arg to \eqn or \deqn: no escapes */#if DEBUGMODERprintf("xxpushMode(%d, %s) pushes %d, %s, %d\n", newmode, yytname[YYTRANSLATE(newitem)],xxmode, yytname[YYTRANSLATE(xxitemType)], xxbraceDepth);#endifxxmode = newmode;xxitemType = newitem;xxbraceDepth = 0;xxinRString = 0;xxinEqn = neweqn;return ans;}static void xxpopMode(SEXP oldmode){#if DEBUGVALSRprintf("xxpopMode(%d, %s, %d) replaces %d, %s, %d\n", INTEGER(oldmode)[0], yytname[YYTRANSLATE(INTEGER(oldmode)[1])], INTEGER(oldmode)[2],xxmode, yytname[YYTRANSLATE(xxitemType)], xxbraceDepth);#endifxxmode = INTEGER(oldmode)[0];xxitemType = INTEGER(oldmode)[1];xxbraceDepth = INTEGER(oldmode)[2];xxinRString = INTEGER(oldmode)[3];xxQuoteLine = INTEGER(oldmode)[4];xxQuoteCol = INTEGER(oldmode)[5];xxinEqn = INTEGER(oldmode)[6];UNPROTECT_PTR(oldmode);}static int getDynamicFlag(SEXP item){SEXP flag = getAttrib(item, install("dynamicFlag"));if (isNull(flag)) return 0;else return INTEGER(flag)[0];}static void setDynamicFlag(SEXP item, int flag){if (flag)setAttrib(item, install("dynamicFlag"), ScalarInteger(flag));}static SEXP xxnewlist(SEXP item){SEXP ans, tmp;#if DEBUGVALSRprintf("xxnewlist(item=%p)", item);#endifPROTECT(tmp = NewList());if (item) {int flag = getDynamicFlag(item);PROTECT(ans = GrowList(tmp, item));setDynamicFlag(ans, flag);UNPROTECT_PTR(tmp);UNPROTECT_PTR(item);} else ans = tmp;#if DEBUGVALSRprintf(" result: %p is length %d\n", ans, length(ans));#endifreturn ans;}static SEXP xxnewlist2(SEXP item1, SEXP item2){return xxlist(xxnewlist(item1), item2);}static SEXP xxnewlist3(SEXP item1, SEXP item2, SEXP item3){return xxlist(xxnewlist2(item1, item2), item3);}static SEXP xxnewlist4(SEXP item1, SEXP item2, SEXP item3, SEXP item4){return xxlist(xxnewlist3(item1, item2, item3), item4);}static SEXP xxnewlist5(SEXP item1, SEXP item2, SEXP item3, SEXP item4, SEXP item5){return xxlist(xxnewlist4(item1, item2, item3, item4), item5);}static SEXP xxnewlist6(SEXP item1, SEXP item2, SEXP item3, SEXP item4, SEXP item5,SEXP item6){return xxlist(xxnewlist5(item1, item2, item3, item4, item5), item6);}static SEXP xxnewlist7(SEXP item1, SEXP item2, SEXP item3, SEXP item4, SEXP item5,SEXP item6, SEXP item7){return xxlist(xxnewlist6(item1, item2, item3, item4, item5, item6), item7);}static SEXP xxnewlist8(SEXP item1, SEXP item2, SEXP item3, SEXP item4, SEXP item5,SEXP item6, SEXP item7, SEXP item8){return xxlist(xxnewlist7(item1, item2, item3, item4, item5, item6, item7), item8);}static SEXP xxnewlist9(SEXP item1, SEXP item2, SEXP item3, SEXP item4, SEXP item5,SEXP item6, SEXP item7, SEXP item8, SEXP item9){return xxlist(xxnewlist8(item1, item2, item3, item4, item5, item6, item7, item8),item9);}static SEXP xxlist(SEXP oldlist, SEXP item){SEXP ans;int flag = getDynamicFlag(oldlist) | getDynamicFlag(item);#if DEBUGVALSRprintf("xxlist(oldlist=%p, item=%p)", oldlist, item);#endifPROTECT(ans = GrowList(oldlist, item));UNPROTECT_PTR(item);UNPROTECT_PTR(oldlist);setDynamicFlag(ans, flag);#if DEBUGVALSRprintf(" result: %p is length %d\n", ans, length(ans));#endifreturn ans;}static SEXP xxmarkup(SEXP header, SEXP body, int flag, YYLTYPE *lloc){SEXP ans;#if DEBUGVALSRprintf("xxmarkup(header=%p, body=%p)", header, body);#endifif (isNull(body))PROTECT(ans = allocVector(VECSXP, 0));else {flag |= getDynamicFlag(body);PROTECT(ans = PairToVectorList(CDR(body)));UNPROTECT_PTR(body);}if (isNull(header))PROTECT(header = mkString("LIST"));setAttrib(ans, install("Rd_tag"), header);setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));UNPROTECT_PTR(header);setDynamicFlag(ans, flag);#if DEBUGVALSRprintf(" result: %p\n", ans);#endifreturn ans;}static SEXP xxnewcommand(SEXP cmd, SEXP name, SEXP defn, YYLTYPE *lloc){SEXP ans, prev, thename, thedefn;char buffer[128];const char *c;int maxarg = 0;#if DEBUGVALSRprintf("xxnewcommand(cmd=%p, name=%p, defn=%p)", cmd, name, defn);#endifthename = CADR(name);thedefn = CADR(defn);if (TYPEOF(thedefn) == STRSXP)PROTECT(thedefn = mkString(CHAR(STRING_ELT(thedefn,0))));elsePROTECT(thedefn = mkString(""));prev = findVar(install(CHAR(STRING_ELT(thename, 0))), xxMacroList);if (prev != R_UnboundValue && !strcmp(CHAR(STRING_ELT(cmd,0)), "\renewcommand")) {snprintf(buffer, sizeof(buffer), _("Macro '%s' previously defined."),CHAR(STRING_ELT(thename, 0)));yyerror(buffer);}for (c = CHAR(STRING_ELT(thedefn, 0)); *c; c++) {if (*c == '#' && isdigit(*(c+1)))maxarg = imax2(maxarg, *(c+1) - '0');}if (maxarg > 4) {snprintf(buffer, sizeof(buffer), _("At most 4 arguments are allowed for user defined macros."));yyerror(buffer);}PROTECT(ans = ScalarInteger(USERMACRO + maxarg));setAttrib(ans, install("Rd_tag"), cmd);setAttrib(ans, install("definition"), thedefn);setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));defineVar(install(CHAR(STRING_ELT(thename, 0))), ans, xxMacroList);UNPROTECT_PTR(thedefn);UNPROTECT_PTR(cmd);UNPROTECT_PTR(name);UNPROTECT_PTR(defn);return ans;}#define START_MACRO -2#define END_MACRO -3static SEXP xxusermacro(SEXP macro, SEXP args, YYLTYPE *lloc){SEXP ans, value, nextarg;int i,len;const char *c, *start ;#if DEBUGVALSRprintf("xxusermacro(macro=%p, args=%p)", macro, args);#endiflen = length(args)-1;PROTECT(ans = allocVector(STRSXP, len + 1));value = UserMacroLookup(CHAR(STRING_ELT(macro,0)));if (TYPEOF(value) == STRSXP)SET_STRING_ELT(ans, 0, STRING_ELT(value, 0));elseerror(_("No macro definition for '%s'."), CHAR(STRING_ELT(macro,0)));/* Rprintf("len = %d", len); */for (i = 0, nextarg=args; i < len; i++, nextarg = CDR(nextarg)) {/* Rprintf("arg i is");PrintValue(CADR(CADR(nextarg))); */SET_STRING_ELT(ans, i+1, STRING_ELT(CADR(CADR(nextarg)), 0));}UNPROTECT_PTR(args);UNPROTECT_PTR(macro);/* Now push the expanded macro onto the input stream, in reverse order */xxungetc(END_MACRO);start = CHAR(STRING_ELT(ans, 0));for (c = start + strlen(start); c > start; c--) {if (c > start + 1 && *(c-2) == '#' && isdigit(*(c-1))) {int which = *(c-1) - '0';const char *arg = CHAR(STRING_ELT(ans, which));for (i = strlen(arg); i > 0; i--) {xxungetc(arg[i-1]);}c--;} else {xxungetc(*(c-1));}}xxungetc(START_MACRO);setAttrib(ans, install("Rd_tag"), mkString("USERMACRO"));setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));#if DEBUGVALSRprintf(" result: %p\n", ans);#endifreturn ans;}static SEXP xxOptionmarkup(SEXP header, SEXP option, SEXP body, int flag, YYLTYPE *lloc){SEXP ans;#if DEBUGVALSRprintf("xxOptionmarkup(header=%p, option=%p, body=%p)", header, option, body);#endifflag |= getDynamicFlag(body);PROTECT(ans = PairToVectorList(CDR(body)));UNPROTECT_PTR(body);setAttrib(ans, install("Rd_tag"), header);UNPROTECT_PTR(header);flag |= getDynamicFlag(option);setAttrib(ans, install("Rd_option"), option);UNPROTECT_PTR(option);setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));setDynamicFlag(ans, flag);#if DEBUGVALSRprintf(" result: %p\n", ans);#endifreturn ans;}static SEXP xxmarkup2(SEXP header, SEXP body1, SEXP body2, int argcount, int flag, YYLTYPE *lloc){SEXP ans;#if DEBUGVALSRprintf("xxmarkup2(header=%p, body1=%p, body2=%p)", header, body1, body2);#endifPROTECT(ans = allocVector(VECSXP, argcount));if (!isNull(body1)) {int flag1 = getDynamicFlag(body1);SET_VECTOR_ELT(ans, 0, PairToVectorList(CDR(body1)));UNPROTECT_PTR(body1);setDynamicFlag(VECTOR_ELT(ans, 0), flag1);flag |= flag1;}if (!isNull(body2)) {int flag2;if (argcount < 2) error("internal error: inconsistent argument count");flag2 = getDynamicFlag(body2);SET_VECTOR_ELT(ans, 1, PairToVectorList(CDR(body2)));UNPROTECT_PTR(body2);setDynamicFlag(VECTOR_ELT(ans, 1), flag2);flag |= flag2;}setAttrib(ans, install("Rd_tag"), header);UNPROTECT_PTR(header);setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));setDynamicFlag(ans, flag);#if DEBUGVALSRprintf(" result: %p\n", ans);#endifreturn ans;}static SEXP xxmarkup3(SEXP header, SEXP body1, SEXP body2, SEXP body3, int flag, YYLTYPE *lloc){SEXP ans;#if DEBUGVALSRprintf("xxmarkup2(header=%p, body1=%p, body2=%p, body3=%p)", header, body1, body2, body3);#endifPROTECT(ans = allocVector(VECSXP, 3));if (!isNull(body1)) {int flag1 = getDynamicFlag(body1);SET_VECTOR_ELT(ans, 0, PairToVectorList(CDR(body1)));UNPROTECT_PTR(body1);setDynamicFlag(VECTOR_ELT(ans, 0), flag1);flag |= flag1;}if (!isNull(body2)) {int flag2;flag2 = getDynamicFlag(body2);SET_VECTOR_ELT(ans, 1, PairToVectorList(CDR(body2)));UNPROTECT_PTR(body2);setDynamicFlag(VECTOR_ELT(ans, 1), flag2);flag |= flag2;}if (!isNull(body3)) {int flag3;flag3 = getDynamicFlag(body3);SET_VECTOR_ELT(ans, 2, PairToVectorList(CDR(body3)));UNPROTECT_PTR(body3);setDynamicFlag(VECTOR_ELT(ans, 2), flag3);flag |= flag3;}setAttrib(ans, install("Rd_tag"), header);UNPROTECT_PTR(header);setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));setDynamicFlag(ans, flag);#if DEBUGVALSRprintf(" result: %p\n", ans);#endifreturn ans;}static void xxsavevalue(SEXP Rd, YYLTYPE *lloc){int flag = getDynamicFlag(Rd);PROTECT(Value = PairToVectorList(CDR(Rd)));if (!isNull(Value)) {setAttrib(Value, R_ClassSymbol, mkString("Rd"));setAttrib(Value, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));setDynamicFlag(Value, flag);}UNPROTECT_PTR(Rd);}static SEXP xxtag(SEXP item, int type, YYLTYPE *lloc){setAttrib(item, install("Rd_tag"), mkString(yytname[YYTRANSLATE(type)]));setAttrib(item, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));return item;}static void xxWarnNewline(){if (xxNewlineInString) {if(wCalls)warning(_("newline within quoted string at %s:%d"),xxBasename, xxNewlineInString);elsewarningcall(R_NilValue,_("newline within quoted string at %s:%d"),xxBasename, xxNewlineInString);}}/*----------------------------------------------------------------------------*/static int (*ptr_getc)(void);/* Private pushback, since file ungetc only guarantees one byte.We need arbitrarily large size, since this is how macros are expanded. */#define PUSH_BACK(c) do { \if (npush >= pushsize - 1) { \int *old = pushbase; \pushsize *= 2; \pushbase = malloc(pushsize*sizeof(int)); \if(!pushbase) error(_("unable to allocate buffer for long macro at line %d"), xxlineno);\memmove(pushbase, old, npush*sizeof(int)); \if(old != pushback) free(old); } \pushbase[npush++] = (c); \} while(0)#define PUSHBACK_BUFSIZE 32static int pushback[PUSHBACK_BUFSIZE];static int *pushbase;static unsigned int npush, pushsize;static int macrolevel;static int prevpos = 0;static int prevlines[PUSHBACK_BUFSIZE];static int prevcols[PUSHBACK_BUFSIZE];static int prevbytes[PUSHBACK_BUFSIZE];static int xxgetc(void){int c, oldpos;do {if(npush) {c = pushbase[--npush];if (c == START_MACRO) {macrolevel++;if (macrolevel > 1000)error(_("macros nested too deeply: infinite recursion?"));} else if (c == END_MACRO) macrolevel--;} else c = ptr_getc();} while (c == START_MACRO || c == END_MACRO);if (!macrolevel) {oldpos = prevpos;prevpos = (prevpos + 1) % PUSHBACK_BUFSIZE;prevbytes[prevpos] = xxbyteno;prevlines[prevpos] = xxlineno;/* We only advance the column for the 1st byte in UTF-8, so handle later bytes specially */if (0x80 <= (unsigned char)c && (unsigned char)c <= 0xBF) {xxcolno--;prevcols[prevpos] = prevcols[oldpos];} elseprevcols[prevpos] = xxcolno;if (c == EOF) return R_EOF;R_ParseContextLast = (R_ParseContextLast + 1) % PARSE_CONTEXT_SIZE;R_ParseContext[R_ParseContextLast] = c;if (c == '\n') {xxlineno += 1;xxcolno = 1;xxbyteno = 1;} else {xxcolno++;xxbyteno++;}if (c == '\t') xxcolno = ((xxcolno + 6) & ~7) + 1;R_ParseContextLine = xxlineno;}/* Rprintf("get %c\n", c); */return c;}static int xxungetc(int c){/* this assumes that c was the result of xxgetc; if not, some edits will be needed */if (c == END_MACRO) macrolevel++;if (!macrolevel) {xxlineno = prevlines[prevpos];xxbyteno = prevbytes[prevpos];xxcolno = prevcols[prevpos];prevpos = (prevpos + PUSHBACK_BUFSIZE - 1) % PUSHBACK_BUFSIZE;R_ParseContextLine = xxlineno;R_ParseContext[R_ParseContextLast] = '\0';/* Mac OS X requires us to keep this non-negative */R_ParseContextLast = (R_ParseContextLast + PARSE_CONTEXT_SIZE - 1)% PARSE_CONTEXT_SIZE;}if (c == START_MACRO) macrolevel--;PUSH_BACK(c);/* Rprintf("unget %c;", c); */return c;}static SEXP makeSrcref(YYLTYPE *lloc, SEXP srcfile){SEXP val;PROTECT(val = allocVector(INTSXP, 6));INTEGER(val)[0] = lloc->first_line;INTEGER(val)[1] = lloc->first_byte;INTEGER(val)[2] = lloc->last_line;INTEGER(val)[3] = lloc->last_byte;INTEGER(val)[4] = lloc->first_column;INTEGER(val)[5] = lloc->last_column;setAttrib(val, R_SrcfileSymbol, srcfile);setAttrib(val, R_ClassSymbol, mkString("srcref"));UNPROTECT(1);return val;}static SEXP mkString2(const char *s, int len){SEXP t;cetype_t enc = CE_UTF8;PROTECT(t = allocVector(STRSXP, 1));SET_STRING_ELT(t, 0, mkCharLenCE(s, len, enc));UNPROTECT(1);return t;}/* Stretchy List Structures : Lists are created and grown using a special *//* dotted pair. The CAR of the list points to the last cons-cell in the *//* list and the CDR points to the first. The list can be extracted from *//* the pair by taking its CDR, while the CAR gives fast access to the end *//* of the list. *//* Create a stretchy-list dotted pair */static SEXP NewList(void){SEXP s = CONS(R_NilValue, R_NilValue);SETCAR(s, s);return s;}/* Add a new element at the end of a stretchy list */static SEXP GrowList(SEXP l, SEXP s){SEXP tmp;PROTECT(s);tmp = CONS(s, R_NilValue);UNPROTECT(1);SETCDR(CAR(l), tmp);SETCAR(l, tmp);return l;}/*--------------------------------------------------------------------------*//** Parsing Entry Points:** The Following entry points provide Rd parsing facilities.** SEXP R_ParseRd(Rconnection con, ParseStatus *status, SEXP srcfile)**/static SEXP ParseRd(ParseStatus *status, SEXP srcfile, Rboolean fragment){R_ParseContextLast = 0;R_ParseContext[0] = '\0';xxlineno = 1;xxcolno = 1;xxbyteno = 1;SrcFile = srcfile;npush = 0;pushbase = pushback;pushsize = PUSHBACK_BUFSIZE;macrolevel = 0;xxmode = LATEXLIKE;xxitemType = UNKNOWN;xxbraceDepth = 0;xxinRString = 0;xxNewlineInString = 0;xxinEqn = 0;if (fragment) xxinitvalue = STARTFRAGMENT;else xxinitvalue = STARTFILE;xxMacroList = InstallKeywords();Value = R_NilValue;if (yyparse()) *status = PARSE_ERROR;else *status = PARSE_OK;#if DEBUGVALSRprintf("ParseRd result: %p\n", Value);#endifUNPROTECT_PTR(Value);UNPROTECT_PTR(xxMacroList);if (pushbase != pushback) free(pushbase);return Value;}#include "Rconnections.h"static Rconnection con_parse;/* need to handle incomplete last line */static int con_getc(void){int c;static int last=-1000;c = Rconn_fgetc(con_parse);if (c == EOF && last != '\n') c = '\n';return (last = c);}attribute_hiddenSEXP R_ParseRd(Rconnection con, ParseStatus *status, SEXP srcfile, Rboolean fragment){con_parse = con;ptr_getc = con_getc;return ParseRd(status, srcfile, fragment);}/*----------------------------------------------------------------------------** The Lexical Analyzer:** Basic lexical analysis is performed by the following* routines.** The function yylex() scans the input, breaking it into* tokens which are then passed to the parser.**//* Special Symbols *//* Section and R code headers */struct {char *name;int token;}static keywords[] = {/* These sections contain Latex-like text */{ "\\author", SECTIONHEADER },{ "\\concept", SECTIONHEADER },{ "\\description",SECTIONHEADER },{ "\\details", SECTIONHEADER },{ "\\docType", SECTIONHEADER },{ "\\encoding",SECTIONHEADER },{ "\\format", SECTIONHEADER },{ "\\keyword", SECTIONHEADER },{ "\\note", SECTIONHEADER },{ "\\references", SECTIONHEADER },{ "\\section", SECTIONHEADER2 },{ "\\seealso", SECTIONHEADER },{ "\\source", SECTIONHEADER },{ "\\title", SECTIONHEADER },/* These sections contain R-like text */{ "\\examples",RSECTIONHEADER },{ "\\usage", RSECTIONHEADER },/* These sections contain verbatim text */{ "\\alias", VSECTIONHEADER },{ "\\name", VSECTIONHEADER },{ "\\synopsis",VSECTIONHEADER },{ "\\Rdversion",VSECTIONHEADER },/* These macros take no arguments. One character non-alpha escapes get thesame token value */{ "\\cr", ESCAPE },{ "\\dots", ESCAPE },{ "\\ldots", ESCAPE },{ "\\R", ESCAPE },{ "\\tab", ESCAPE },/* These macros take one LaTeX-like argument. */{ "\\acronym", LATEXMACRO },{ "\\bold", LATEXMACRO },{ "\\cite", LATEXMACRO },{ "\\command", LATEXMACRO },{ "\\dfn", LATEXMACRO },{ "\\dQuote", LATEXMACRO },{ "\\email", LATEXMACRO },{ "\\emph", LATEXMACRO },{ "\\file", LATEXMACRO },{ "\\linkS4class", LATEXMACRO },{ "\\pkg", LATEXMACRO },{ "\\sQuote", LATEXMACRO },{ "\\strong", LATEXMACRO },{ "\\var", LATEXMACRO },/* These are like SECTIONHEADER/LATEXMACRO, but they change the interpretation of \item */{ "\\arguments",LISTSECTION },{ "\\value", LISTSECTION },{ "\\describe",DESCRIPTION },{ "\\enumerate",ITEMIZE },{ "\\itemize", ITEMIZE },{ "\\item", NOITEM }, /* will change to UNKNOWN, ESCAPE, or LATEXMACRO2 depending on context *//* These macros take two LaTeX-like arguments. */{ "\\enc", LATEXMACRO2 },{ "\\if", LATEXMACRO2 },{ "\\method", LATEXMACRO2 },{ "\\S3method",LATEXMACRO2 },{ "\\S4method",LATEXMACRO2 },{ "\\tabular", LATEXMACRO2 },{ "\\subsection", LATEXMACRO2 },/* This macro takes one verbatim and one LaTeX-like argument. */{ "\\href", VERBLATEX },/* This macro takes three LaTeX-like arguments. */{ "\\ifelse", LATEXMACRO3 },/* These macros take one optional bracketed option and always takeone LaTeX-like argument */{ "\\link", OPTMACRO },/* These markup macros require an R-like text argument */{ "\\code", RCODEMACRO },{ "\\dontshow",RCODEMACRO },{ "\\donttest",RCODEMACRO },{ "\\testonly",RCODEMACRO },/* This macro takes one optional bracketed option and one R-like argument */{ "\\Sexpr", SEXPR },/* This is just like a VSECTIONHEADER, but it needs SEXPR processing */{ "\\RdOpts", RDOPTS },/* These macros take one verbatim arg and ignore everything except braces */{ "\\dontrun", VERBMACRO }, /* at least for now */{ "\\env", VERBMACRO },{ "\\kbd", VERBMACRO },{ "\\option", VERBMACRO },{ "\\out", VERBMACRO },{ "\\preformatted", VERBMACRO },{ "\\samp", VERBMACRO },{ "\\special", VERBMACRO },{ "\\url", VERBMACRO },{ "\\verb", VERBMACRO },/* These ones take one or two verbatim args */{ "\\eqn", VERBMACRO2 },{ "\\deqn", VERBMACRO2 },/* We parse IFDEF/IFNDEF as markup, not as a separate preprocessor step */{ "#ifdef", IFDEF },{ "#ifndef", IFDEF },{ "#endif", ENDIF },/* These allow user defined macros */{ "\\newcommand", NEWCOMMAND },{ "\\renewcommand", NEWCOMMAND },{ 0, 0 }/* All other markup macros are rejected. */};/* Record the longest # directive here */#define DIRECTIVE_LEN 7static SEXP InstallKeywords(){int i, num;SEXP result, name, val;num = sizeof(keywords)/sizeof(keywords[0]);PROTECT(result = R_NewHashedEnv(R_EmptyEnv, ScalarInteger(num)));for (i = 0; keywords[i].name; i++) {PROTECT(name = install(keywords[i].name));PROTECT(val = ScalarInteger(keywords[i].token));defineVar(name, val, result);UNPROTECT(2);}return result;}static int KeywordLookup(const char *s){SEXP rec = findVar(install(s), xxMacroList);if (rec == R_UnboundValue) return UNKNOWN;else return INTEGER(rec)[0];}static SEXP UserMacroLookup(const char *s){SEXP rec = findVar(install(s), xxMacroList);if (rec == R_UnboundValue) error(_("Unable to find macro %s"), s);return getAttrib(rec, install("definition"));}static void yyerror(const char *s){static const char *const yytname_translations[] ={/* the left column are strings coming from bison, the rightcolumn are translations for users.The first YYENGLISH from the right column are English to be translated,the rest are to be copied literally. The #if 0 block below allows xgettextto see these.*/#define YYENGLISH 17"$undefined", "input","SECTIONHEADER","section header","RSECTIONHEADER","section header","VSECTIONHEADER","section header","LISTSECTION", "section header","LATEXMACRO", "macro","LATEXMACRO2", "macro","LATEXMACRO3", "macro","RCODEMACRO", "macro","VERBMACRO", "macro","VERBMACRO2", "macro","ESCAPE", "macro","ITEMIZE", "macro","IFDEF", "conditional","SECTIONHEADER2","section header","OPTMACRO", "macro","DESCRIPTION", "macro","VERB", "VERBATIM TEXT",0, 0};static char const yyunexpected[] = "syntax error, unexpected ";static char const yyexpecting[] = ", expecting ";static char const yyshortunexpected[] = "unexpected %s";static char const yylongunexpected[] = "unexpected %s '%s'";char *expecting;char ParseErrorMsg[PARSE_ERROR_SIZE];SEXP filename;char ParseErrorFilename[PARSE_ERROR_SIZE];#if 0/* these are just here to trigger the internationalization */_("input");_("macro");_("conditional");_("section header");#endifxxWarnNewline(); /* post newline warning if necessary *//*R_ParseError = yylloc.first_line;R_ParseErrorCol = yylloc.first_column;R_ParseErrorFile = SrcFile;*/if (!strncmp(s, yyunexpected, sizeof yyunexpected -1)) {int i, translated = FALSE;/* Edit the error message */expecting = strstr(s + sizeof yyunexpected -1, yyexpecting);if (expecting) *expecting = '\0';for (i = 0; yytname_translations[i]; i += 2) {if (!strcmp(s + sizeof yyunexpected - 1, yytname_translations[i])) {sprintf(ParseErrorMsg, yychar < 256 ? _(yyshortunexpected): _(yylongunexpected),i/2 < YYENGLISH ? _(yytname_translations[i+1]): yytname_translations[i+1], CHAR(STRING_ELT(yylval, 0)));translated = TRUE;break;}}if (!translated)sprintf(ParseErrorMsg, yychar < 256 ? _(yyshortunexpected) : _(yylongunexpected),s + sizeof yyunexpected - 1, CHAR(STRING_ELT(yylval, 0)));if (expecting) {translated = FALSE;for (i = 0; yytname_translations[i]; i += 2) {if (!strcmp(expecting + sizeof yyexpecting - 1, yytname_translations[i])) {strcat(ParseErrorMsg, _(yyexpecting));strcat(ParseErrorMsg, i/2 < YYENGLISH ? _(yytname_translations[i+1]): yytname_translations[i+1]);translated = TRUE;break;}}if (!translated) {strcat(ParseErrorMsg, _(yyexpecting));strcat(ParseErrorMsg, expecting + sizeof yyexpecting - 1);}}} else if (!strncmp(s, yyunknown, sizeof yyunknown-1)) {sprintf(ParseErrorMsg, "%s '%s'", s, CHAR(STRING_ELT(yylval, 0)));} else {sprintf(ParseErrorMsg, "%s", s);}filename = findVar(install("filename"), SrcFile);if (isString(filename) && length(filename))strncpy(ParseErrorFilename, CHAR(STRING_ELT(filename, 0)), PARSE_ERROR_SIZE - 1);elseParseErrorFilename[0] = '\0';if (wCalls) {if (yylloc.first_line != yylloc.last_line)warning("%s:%d-%d: %s",ParseErrorFilename, yylloc.first_line, yylloc.last_line, ParseErrorMsg);elsewarning("%s:%d: %s",ParseErrorFilename, yylloc.first_line, ParseErrorMsg);} else {if (yylloc.first_line != yylloc.last_line)warningcall(R_NilValue, "%s:%d-%d: %s",ParseErrorFilename, yylloc.first_line, yylloc.last_line, ParseErrorMsg);elsewarningcall(R_NilValue, "%s:%d: %s",ParseErrorFilename, yylloc.first_line, ParseErrorMsg);}}#define TEXT_PUSH(c) do { \unsigned int nc = bp - stext; \if (nc >= nstext - 1) { \char *old = stext; \nstext *= 2; \stext = malloc(nstext); \if(!stext) error(_("unable to allocate buffer for long string at line %d"), xxlineno);\memmove(stext, old, nc); \if(old != st0) free(old); \bp = stext+nc; } \*bp++ = (c); \} while(0)static void setfirstloc(void){yylloc.first_line = xxlineno;yylloc.first_column = xxcolno;yylloc.first_byte = xxbyteno;}static void setlastloc(void){yylloc.last_line = prevlines[prevpos];yylloc.last_column = prevcols[prevpos];yylloc.last_byte = prevbytes[prevpos];}/* Split the input stream into tokens. *//* This is the lowest of the parsing levels. */static int token(void){int c, lookahead;int outsideLiteral = xxmode == LATEXLIKE || xxmode == INOPTION || xxbraceDepth == 0;if (xxinitvalue) {yylloc.first_line = 0;yylloc.first_column = 0;yylloc.first_byte = 0;yylloc.last_line = 0;yylloc.last_column = 0;yylloc.last_byte = 0;PROTECT(yylval = mkString(""));c = xxinitvalue;xxinitvalue = 0;return(c);}setfirstloc();c = xxgetc();switch (c) {case '%': if (!xxinEqn) return mkComment(c);break;case '\\':if (!xxinEqn) {lookahead = xxungetc(xxgetc());if (isalpha(lookahead) && xxmode != VERBATIM/* In R strings, only link or var is allowed as markup */&& (lookahead == 'l' || lookahead == 'v' || !xxinRString))return mkMarkup(c);}break;case R_EOF:if (xxinRString) {xxWarnNewline();error(_("Unexpected end of input (in %c quoted string opened at %s:%d:%d)"),xxinRString, xxBasename, xxQuoteLine, xxQuoteCol);}return END_OF_INPUT;case '#':if (!xxinEqn && yylloc.first_column == 1) return mkIfdef(c);break;case LBRACE:if (!xxinRString) {xxbraceDepth++;if (outsideLiteral) return c;}break;case RBRACE:if (!xxinRString) {xxbraceDepth--;if (outsideLiteral || xxbraceDepth == 0) return c;}break;case '[':case ']':if (xxmode == INOPTION ) return c;break;}switch (xxmode) {case RLIKE: return mkCode(c);case INOPTION:case LATEXLIKE: return mkText(c);case VERBATIM: return mkVerb(c);}return ERROR; /* We shouldn't get here. */}#define INITBUFSIZE 128static int mkText(int c){char st0[INITBUFSIZE];unsigned int nstext = INITBUFSIZE;char *stext = st0, *bp = st0, lookahead;while(1) {switch (c) {case '\\':lookahead = xxgetc();if (lookahead == LBRACE || lookahead == RBRACE ||lookahead == '%' || lookahead == '\\') {c = lookahead;break;}xxungetc(lookahead);if (isalpha(lookahead)) goto stop;case ']':if (xxmode == INOPTION) goto stop;break;case '%':case LBRACE:case RBRACE:case R_EOF:goto stop;}TEXT_PUSH(c);if (c == '\n') goto stop;c = xxgetc();};stop:if (c != '\n') xxungetc(c); /* newline causes a break, but we keep it */PROTECT(yylval = mkString2(stext, bp - stext));if(stext != st0) free(stext);return TEXT;}static int mkComment(int c){char st0[INITBUFSIZE];unsigned int nstext = INITBUFSIZE;char *stext = st0, *bp = st0;do TEXT_PUSH(c);while ((c = xxgetc()) != '\n' && c != R_EOF);xxungetc(c);PROTECT(yylval = mkString2(stext, bp - stext));if(stext != st0) free(stext);return COMMENT;}static int mkCode(int c){char st0[INITBUFSIZE];unsigned int nstext = INITBUFSIZE;char *stext = st0, *bp = st0;/* Avoid double counting initial braces */if (c == LBRACE && !xxinRString) xxbraceDepth--;if (c == RBRACE && !xxinRString) xxbraceDepth++;while(1) {int escaped = 0;if (c == '\\') {int lookahead = xxgetc();if (lookahead == '\\' || lookahead == '%') {c = lookahead;escaped = 1;} else xxungetc(lookahead);}if ((!escaped && c == '%') || c == R_EOF) break;if (xxinRString) {/* This stuff is messy, because there are two levels of escaping:The Rd escaping and the R code string escaping. */if (c == '\\') {int lookahead = xxgetc();if (lookahead == '\\') { /* This must be the 3rd backslash */lookahead = xxgetc();if (lookahead == xxinRString || lookahead == '\\') {TEXT_PUSH(c);c = lookahead;escaped = 1;} else {xxungetc(lookahead); /* put back the 4th char */xxungetc('\\'); /* and the 3rd */}} else if (lookahead == xxinRString) { /* There could be one or two before this */TEXT_PUSH(c);c = lookahead;escaped = 1;} else if (!escaped && (lookahead == 'l' || lookahead == 'v')) {/* assume \link or \var; this breaks vertical tab, but does anyone ever use that? */xxungetc(lookahead);break;} else xxungetc(lookahead);}if (!escaped && c == xxinRString)xxinRString = 0;} else {if (c == '#') {do {int escaped = 0;TEXT_PUSH(c);c = xxgetc();if (c == '\\') {int lookahead = xxgetc();if (lookahead == '\\' || lookahead == '%' || lookahead == LBRACE || lookahead == RBRACE) {c = lookahead;escaped = 1;} else xxungetc(lookahead);}if (c == LBRACE && !escaped) xxbraceDepth++;else if (c == RBRACE && !escaped) xxbraceDepth--;} while (c != '\n' && c != R_EOF && xxbraceDepth > 0);if (c == RBRACE && !escaped) xxbraceDepth++; /* avoid double counting */}if (c == '\'' || c == '"' || c == '`') {xxinRString = c;xxQuoteLine = xxlineno;xxQuoteCol = xxcolno;} else if (c == '\\' && !escaped) {int lookahead = xxgetc();if (lookahead == LBRACE || lookahead == RBRACE) {c = lookahead;} else if (isalpha(lookahead)) {xxungetc(lookahead);c = '\\';break;} else {TEXT_PUSH('\\');c = lookahead;}} else if (c == LBRACE) {xxbraceDepth++;} else if (c == RBRACE) {if (xxbraceDepth == 1) break;else xxbraceDepth--;} else if (c == R_EOF) break;}TEXT_PUSH(c);if (c == '\n') {if (xxinRString && !xxNewlineInString)xxNewlineInString = xxlineno-1;break;}c = xxgetc();}if (c != '\n') xxungetc(c);PROTECT(yylval = mkString2(stext, bp - stext));if(stext != st0) free(stext);return RCODE;}static int mkMarkup(int c){char st0[INITBUFSIZE];unsigned int nstext = INITBUFSIZE;char *stext = st0, *bp = st0;int retval = 0, attempt = 0;TEXT_PUSH(c);while (isalnum((c = xxgetc()))) TEXT_PUSH(c);while (attempt++ < 2) {/* character escapes are processed as text, not markup */if (bp == stext+1) {TEXT_PUSH(c);TEXT_PUSH('\0');retval = TEXT;c = xxgetc();break;} else {TEXT_PUSH('\0');retval = KeywordLookup(stext);if (retval == UNKNOWN && attempt == 1) { /* try again, non-digits only */bp--; /* pop the \0 */while (isdigit(*(bp-1))) {xxungetc(c);c = *(--bp); /* pop the last letter into c */}} else {if (retval == NOITEM)retval = xxitemType;break;}}}PROTECT(yylval = mkString2(stext, bp - stext - 1));if(stext != st0) free(stext);xxungetc(c);return retval;}static int mkIfdef(int c){char st0[INITBUFSIZE];unsigned int nstext = INITBUFSIZE;char *stext = st0, *bp = st0;int retval;TEXT_PUSH(c);while (isalpha((c = xxgetc())) && bp - stext <= DIRECTIVE_LEN) TEXT_PUSH(c);TEXT_PUSH('\0');xxungetc(c);retval = KeywordLookup(stext);PROTECT(yylval = mkString2(stext, bp - stext - 1));switch (retval) {case ENDIF: /* eat chars to the end of the line */do { c = xxgetc(); }while (c != '\n' && c != R_EOF);break;case UNKNOWN:UNPROTECT(1);bp--; bp--;for (; bp > stext; bp--)xxungetc(*bp);switch (xxmode) {case RLIKE:retval = mkCode(*bp);break;case INOPTION:case LATEXLIKE:retval = mkText(*bp);break;case VERBATIM:retval = mkVerb(*bp);break;}break;}if(stext != st0) free(stext);return retval;}static int mkVerb(int c){char st0[INITBUFSIZE];unsigned int nstext = INITBUFSIZE;char *stext = st0, *bp = st0;/* Avoid double counting initial braces */if (c == LBRACE) xxbraceDepth--;if (c == RBRACE) xxbraceDepth++;while(1) {int escaped = 0;if (c == '\\') {int lookahead = xxgetc();if (lookahead == '\\' || lookahead == '%' || lookahead == LBRACE || lookahead == RBRACE) {escaped = 1;if (xxinEqn) TEXT_PUSH(c);c = lookahead;} else xxungetc(lookahead);}if (c == R_EOF) break;if (!escaped) {if (c == '%' && !xxinEqn) break;else if (c == LBRACE) xxbraceDepth++;else if (c == RBRACE) {if (xxbraceDepth == 1) break;else xxbraceDepth--;}}TEXT_PUSH(c);if (c == '\n') break;c = xxgetc();};if (c != '\n') xxungetc(c);PROTECT(yylval = mkString2(stext, bp - stext));if(stext != st0) free(stext);return VERB;}static int yylex(void){int tok = token();if (xxDebugTokens) {Rprintf("%d:%d: %s", yylloc.first_line, yylloc.first_column, yytname[YYTRANSLATE(tok)]);if (xxinRString) Rprintf("(in %c%c)", xxinRString, xxinRString);if (tok > 255 && tok != END_OF_INPUT)Rprintf(": %s", CHAR(STRING_ELT(yylval, 0)));Rprintf("\n");}setlastloc();return tok;}/* "do_parseRd".Internal( parseRd(file, srcfile, encoding, verbose, basename, warningCalls) )If there is text then that is read and the other arguments are ignored.*/SEXP attribute_hidden do_parseRd(SEXP call, SEXP op, SEXP args, SEXP env){SEXP s = R_NilValue, source;Rconnection con;Rboolean wasopen, fragment;int ifile, wcall;const char *encoding;ParseStatus status;#if DEBUGMODEyydebug = 1;#endifcheckArity(op, args);R_ParseError = 0;R_ParseErrorMsg[0] = '\0';ifile = asInteger(CAR(args)); args = CDR(args);con = getConnection(ifile);wasopen = con->isopen;source = CAR(args); args = CDR(args);if(!isString(CAR(args)) || LENGTH(CAR(args)) != 1)error(_("invalid '%s' value"), "encoding");encoding = CHAR(STRING_ELT(CAR(args), 0)); /* ASCII */ args = CDR(args);if(!isLogical(CAR(args)) || LENGTH(CAR(args)) != 1)error(_("invalid '%s' value"), "verbose");xxDebugTokens = asInteger(CAR(args)); args = CDR(args);xxBasename = CHAR(STRING_ELT(CAR(args), 0)); args = CDR(args);fragment = asLogical(CAR(args)); args = CDR(args);wcall = asLogical(CAR(args));if (wcall == NA_LOGICAL)error(_("invalid '%s' value"), "warningCalls");wCalls = wcall;if (ifile >= 3) {/* file != "" */if(!wasopen) {if(!con->open(con)) error(_("cannot open the connection"));if(!con->canread) {con->close(con);error(_("cannot read from this connection"));}} else if(!con->canread)error(_("cannot read from this connection"));s = R_ParseRd(con, &status, source, fragment);if(!wasopen) con->close(con);if (status != PARSE_OK) parseError(call, R_ParseError);}else error(_("invalid Rd file"));return s;}/* "do_deparseRd".Internal( deparseRd(element, state) )*/SEXP attribute_hidden do_deparseRd(SEXP call, SEXP op, SEXP args, SEXP env){SEXP e, state, result;int outlen, *statevals, quoteBraces, inRComment;const char *c;char *outbuf, *out, lookahead;Rboolean escape;checkArity(op, args);e = CAR(args); args = CDR(args);if(!isString(e) || length(e) != 1)error(_("deparseRd only supports deparsing character elements"));e = STRING_ELT(e, 0);state = CAR(args);if(!isInteger(state) || length(state) != 5) error(_("bad state"));xxbraceDepth = INTEGER(state)[0];xxinRString = INTEGER(state)[1];xxmode = INTEGER(state)[2];xxinEqn = INTEGER(state)[3];quoteBraces = INTEGER(state)[4];if (xxmode != LATEXLIKE && xxmode != RLIKE && xxmode != VERBATIM && xxmode != COMMENTMODE&& xxmode != INOPTION && xxmode != UNKNOWNMODE)error(_("bad text mode %d in deparseRd"), xxmode);for (c = CHAR(e), outlen=0; *c; c++) {outlen++;/* any special char might be escaped */if (*c == '{' || *c == '}' || *c == '%' || *c == '\\') outlen++;}out = outbuf = R_chk_calloc(outlen+1, sizeof(char));inRComment = FALSE;for (c = CHAR(e); *c; c++) {escape = FALSE;if (xxmode != UNKNOWNMODE) {switch (*c) {case '\\':if (xxmode == RLIKE && xxinRString) {lookahead = *(c+1);if (lookahead == '\\' || lookahead == xxinRString || lookahead == 'l')escape = TRUE;break;} /* fall through to % case for non-strings... */case '%':if (xxmode != COMMENTMODE && !xxinEqn)escape = TRUE;break;case LBRACE:case RBRACE:if (quoteBraces)escape = TRUE;else if (!xxinRString && !xxinEqn && (xxmode == RLIKE || xxmode == VERBATIM)) {if (*c == LBRACE) xxbraceDepth++;else if (xxbraceDepth <= 0) escape = TRUE;else xxbraceDepth--;}break;case '\'':case '"':case '`':if (xxmode == RLIKE) {if (xxinRString) {if (xxinRString == *c) xxinRString = 0;} else if (!inRComment) xxinRString = *c;}break;case '#':if (xxmode == RLIKE && !xxinRString)inRComment = TRUE;break;case '\n':inRComment = FALSE;break;}}if (escape)*out++ = '\\';*out++ = *c;}*out = '\0';PROTECT(result = allocVector(VECSXP, 2));SET_VECTOR_ELT(result, 0, ScalarString(mkChar(outbuf)));SET_VECTOR_ELT(result, 1, duplicate(state));R_chk_free(outbuf);statevals = INTEGER( VECTOR_ELT(result, 1) );statevals[0] = xxbraceDepth;statevals[1] = xxinRString;UNPROTECT(1);return result;}