Rev 52487 | 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 "gramLatex.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* Copyright (C) 2010 Duncan Murdoch** 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>#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 */#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 NewList(void);static SEXP makeSrcref(YYLTYPE *, SEXP);/* Internal lexer / parser state variables */static int xxgetc();static int xxungetc(int);static int xxlineno, xxbyteno, xxcolno;static int xxDebugTokens; /* non-zero causes debug output to R console */static SEXP Value;static int xxinitvalue;static char const yyunknown[] = "unknown macro"; /* our message, not bison's */static SEXP xxInVerbEnv; /* Are we currently in a verbatim environment? Ifso, this is the string to end it. If not,this is NULL */static SEXP xxVerbatimList;/* A STRSXP containing all the verbatim environment names */static SEXP SrcFile; /* parseLatex will *always* supply a srcfile *//* Routines used to build the parse tree */static SEXP xxnewlist(SEXP);static SEXP xxlist(SEXP, SEXP);static void xxsavevalue(SEXP, YYLTYPE *);static SEXP xxtag(SEXP, int, YYLTYPE *);static SEXP xxenv(SEXP, SEXP, SEXP, YYLTYPE *);static SEXP xxmath(SEXP, YYLTYPE *);static SEXP xxblock(SEXP, YYLTYPE *);static void xxSetInVerbEnv(SEXP);static int mkMarkup(int);static int mkText(int);static int mkComment(int);static int mkVerb(int);static int mkVerbEnv();#define YYSTYPE SEXP/* Line 189 of yacc.c */#line 199 "gramLatex.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,MACRO = 260,TEXT = 261,COMMENT = 262,BEGIN = 263,END = 264,VERB = 265};#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 264 "gramLatex.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 21/* YYLAST -- Last index in YYTABLE. */#define YYLAST 88/* YYNTOKENS -- Number of terminals. */#define YYNTOKENS 14/* YYNNTS -- Number of nonterminals. */#define YYNNTS 9/* YYNRULES -- Number of rules. */#define YYNRULES 21/* YYNRULES -- Number of states. */#define YYNSTATES 36/* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */#define YYUNDEFTOK 2#define YYMAXUTOK 265#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, 13, 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, 11, 2, 12, 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};#if YYDEBUG/* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN inYYRHS. */static const yytype_uint8 yyprhs[] ={0, 0, 3, 6, 8, 10, 12, 14, 17, 20,22, 25, 27, 29, 31, 33, 35, 37, 38, 49,53, 57};/* YYRHS -- A `-1'-separated list of the rules' RHS. */static const yytype_int8 yyrhs[] ={15, 0, -1, 16, 3, -1, 3, -1, 1, -1,18, -1, 21, -1, 16, 18, -1, 16, 21, -1,18, -1, 17, 18, -1, 6, -1, 7, -1, 5,-1, 10, -1, 19, -1, 22, -1, -1, 8, 11,6, 12, 20, 16, 9, 11, 6, 12, -1, 13,17, 13, -1, 11, 16, 12, -1, 11, 12, -1};/* YYRLINE[YYN] -- source line where rule number YYN was defined. */static const yytype_uint8 yyrline[] ={0, 145, 145, 146, 147, 150, 151, 152, 153, 155,156, 158, 159, 160, 161, 162, 163, 165, 165, 169,171, 172};#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", "MACRO", "TEXT","COMMENT", "BEGIN", "END", "VERB", "'{'", "'}'", "'$'", "$accept","Init", "Items", "nonMath", "Item", "environment", "$@1", "math","block", 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, 123, 125, 36};# endif/* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */static const yytype_uint8 yyr1[] ={0, 14, 15, 15, 15, 16, 16, 16, 16, 17,17, 18, 18, 18, 18, 18, 18, 20, 19, 21,22, 22};/* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */static const yytype_uint8 yyr2[] ={0, 2, 2, 1, 1, 1, 1, 2, 2, 1,2, 1, 1, 1, 1, 1, 1, 0, 10, 3,3, 2};/* 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, 3, 13, 11, 12, 0, 14, 0, 0,0, 0, 5, 15, 6, 16, 0, 21, 0, 0,9, 1, 2, 7, 8, 0, 20, 19, 10, 17,0, 0, 0, 0, 0, 18};/* YYDEFGOTO[NTERM-NUM]. */static const yytype_int8 yydefgoto[] ={-1, 10, 11, 19, 12, 13, 30, 14, 15};/* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describingSTATE-NUM. */#define YYPACT_NINF -10static const yytype_int8 yypact[] ={23, -10, -10, -10, -10, -10, -8, -10, 32, 77,4, 8, -10, -10, -10, -10, 0, -10, 41, 59,-10, -10, -10, -10, -10, -5, -10, -10, -10, -10,68, 50, -3, 11, 15, -10};/* YYPGOTO[NTERM-NUM]. */static const yytype_int8 yypgoto[] ={-10, -10, -7, -10, -9, -10, -10, -6, -10};/* 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 -1static const yytype_uint8 yytable[] ={20, 18, 23, 16, 21, 24, 25, 29, 33, 23,28, 22, 24, 3, 4, 5, 6, 34, 7, 8,0, 9, 23, 31, 1, 24, 2, 35, 3, 4,5, 6, 0, 7, 8, 0, 9, 3, 4, 5,6, 0, 7, 8, 17, 9, 3, 4, 5, 6,0, 7, 8, 26, 9, 3, 4, 5, 6, 32,7, 8, 0, 9, 3, 4, 5, 6, 0, 7,8, 0, 27, 3, 4, 5, 6, 0, 7, 8,0, 9, 3, 4, 5, 6, 0, 7, 8};static const yytype_int8 yycheck[] ={9, 8, 11, 11, 0, 11, 6, 12, 11, 18,19, 3, 18, 5, 6, 7, 8, 6, 10, 11,-1, 13, 31, 30, 1, 31, 3, 12, 5, 6,7, 8, -1, 10, 11, -1, 13, 5, 6, 7,8, -1, 10, 11, 12, 13, 5, 6, 7, 8,-1, 10, 11, 12, 13, 5, 6, 7, 8, 9,10, 11, -1, 13, 5, 6, 7, 8, -1, 10,11, -1, 13, 5, 6, 7, 8, -1, 10, 11,-1, 13, 5, 6, 7, 8, -1, 10, 11};/* YYSTOS[STATE-NUM] -- The (internal number of the) accessingsymbol of state STATE-NUM. */static const yytype_uint8 yystos[] ={0, 1, 3, 5, 6, 7, 8, 10, 11, 13,15, 16, 18, 19, 21, 22, 11, 12, 16, 17,18, 0, 3, 18, 21, 6, 12, 13, 18, 12,20, 16, 9, 11, 6, 12};#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: /* "MACRO" *//* Line 1009 of yacc.c */#line 141 "gramLatex.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1206 "gramLatex.c"break;case 6: /* "TEXT" *//* Line 1009 of yacc.c */#line 141 "gramLatex.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1215 "gramLatex.c"break;case 7: /* "COMMENT" *//* Line 1009 of yacc.c */#line 141 "gramLatex.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1224 "gramLatex.c"break;case 8: /* "BEGIN" *//* Line 1009 of yacc.c */#line 141 "gramLatex.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1233 "gramLatex.c"break;case 9: /* "END" *//* Line 1009 of yacc.c */#line 141 "gramLatex.y"{ UNPROTECT_PTR((*yyvaluep)); };/* Line 1009 of yacc.c */#line 1242 "gramLatex.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 145 "gramLatex.y"{ xxsavevalue((yyvsp[(1) - (2)]), &(yyloc)); return 0; ;}break;case 3:/* Line 1464 of yacc.c */#line 146 "gramLatex.y"{ xxsavevalue(NULL, &(yyloc)); return 0; ;}break;case 4:/* Line 1464 of yacc.c */#line 147 "gramLatex.y"{ PROTECT(Value = R_NilValue); YYABORT; ;}break;case 5:/* Line 1464 of yacc.c */#line 150 "gramLatex.y"{ (yyval) = xxnewlist((yyvsp[(1) - (1)])); ;}break;case 6:/* Line 1464 of yacc.c */#line 151 "gramLatex.y"{ (yyval) = xxnewlist((yyvsp[(1) - (1)])); ;}break;case 7:/* Line 1464 of yacc.c */#line 152 "gramLatex.y"{ (yyval) = xxlist((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)])); ;}break;case 8:/* Line 1464 of yacc.c */#line 153 "gramLatex.y"{ (yyval) = xxlist((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)])); ;}break;case 9:/* Line 1464 of yacc.c */#line 155 "gramLatex.y"{ (yyval) = xxnewlist((yyvsp[(1) - (1)])); ;}break;case 10:/* Line 1464 of yacc.c */#line 156 "gramLatex.y"{ (yyval) = xxlist((yyvsp[(1) - (2)]), (yyvsp[(2) - (2)])); ;}break;case 11:/* Line 1464 of yacc.c */#line 158 "gramLatex.y"{ (yyval) = xxtag((yyvsp[(1) - (1)]), TEXT, &(yyloc)); ;}break;case 12:/* Line 1464 of yacc.c */#line 159 "gramLatex.y"{ (yyval) = xxtag((yyvsp[(1) - (1)]), COMMENT, &(yyloc)); ;}break;case 13:/* Line 1464 of yacc.c */#line 160 "gramLatex.y"{ (yyval) = xxtag((yyvsp[(1) - (1)]), MACRO, &(yyloc)); ;}break;case 14:/* Line 1464 of yacc.c */#line 161 "gramLatex.y"{ (yyval) = xxtag((yyvsp[(1) - (1)]), VERB, &(yyloc)); ;}break;case 15:/* Line 1464 of yacc.c */#line 162 "gramLatex.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 16:/* Line 1464 of yacc.c */#line 163 "gramLatex.y"{ (yyval) = (yyvsp[(1) - (1)]); ;}break;case 17:/* Line 1464 of yacc.c */#line 165 "gramLatex.y"{ xxSetInVerbEnv((yyvsp[(3) - (4)])); ;}break;case 18:/* Line 1464 of yacc.c */#line 166 "gramLatex.y"{ (yyval) = xxenv((yyvsp[(3) - (10)]), (yyvsp[(6) - (10)]), (yyvsp[(9) - (10)]), &(yyloc));UNPROTECT_PTR((yyvsp[(1) - (10)])); UNPROTECT_PTR((yyvsp[(7) - (10)])); ;}break;case 19:/* Line 1464 of yacc.c */#line 169 "gramLatex.y"{ (yyval) = xxmath((yyvsp[(2) - (3)]), &(yyloc)); ;}break;case 20:/* Line 1464 of yacc.c */#line 171 "gramLatex.y"{ (yyval) = xxblock((yyvsp[(2) - (3)]), &(yyloc)); ;}break;case 21:/* Line 1464 of yacc.c */#line 172 "gramLatex.y"{ (yyval) = xxblock(NULL, &(yyloc)); ;}break;/* Line 1464 of yacc.c */#line 1715 "gramLatex.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 174 "gramLatex.y"static SEXP xxnewlist(SEXP item){SEXP ans, tmp;#if DEBUGVALSRprintf("xxnewlist(item=%p)", item);#endifPROTECT(tmp = NewList());if (item) {PROTECT(ans = GrowList(tmp, item));UNPROTECT_PTR(tmp);UNPROTECT_PTR(item);} else ans = tmp;#if DEBUGVALSRprintf(" result: %p is length %d\n", ans, length(ans));#endifreturn ans;}static SEXP xxlist(SEXP oldlist, SEXP item){SEXP ans;#if DEBUGVALSRprintf("xxlist(oldlist=%p, item=%p)", oldlist, item);#endifPROTECT(ans = GrowList(oldlist, item));UNPROTECT_PTR(item);UNPROTECT_PTR(oldlist);#if DEBUGVALSRprintf(" result: %p is length %d\n", ans, length(ans));#endifreturn ans;}static SEXP xxenv(SEXP begin, SEXP body, SEXP end, YYLTYPE *lloc){SEXP ans;#if DEBUGVALSRprintf("xxenv(begin=%p, body=%p, end=%p)", begin, body, end);#endifPROTECT(ans = allocVector(VECSXP, 2));SET_VECTOR_ELT(ans, 0, begin);UNPROTECT_PTR(begin);if (!isNull(body)) {SET_VECTOR_ELT(ans, 1, PairToVectorList(CDR(body)));UNPROTECT_PTR(body);}/* FIXME: check that begin and end match */setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));setAttrib(ans, install("latex_tag"), mkString("ENVIRONMENT"));if (!isNull(end))UNPROTECT_PTR(end);#if DEBUGVALSRprintf(" result: %p\n", ans);#endifreturn ans;}static SEXP xxmath(SEXP body, YYLTYPE *lloc){SEXP ans;#if DEBUGVALSRprintf("xxmath(body=%p)", body);#endifPROTECT(ans = PairToVectorList(CDR(body)));UNPROTECT_PTR(body);setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));setAttrib(ans, install("latex_tag"), mkString("MATH"));#if DEBUGVALSRprintf(" result: %p\n", ans);#endifreturn ans;}static SEXP xxblock(SEXP body, YYLTYPE *lloc){SEXP ans;#if DEBUGVALSRprintf("xxblock(body=%p)", body);#endifif (!body)PROTECT(ans = allocVector(VECSXP, 0));else {PROTECT(ans = PairToVectorList(CDR(body)));UNPROTECT_PTR(body);}setAttrib(ans, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));setAttrib(ans, install("latex_tag"), mkString("BLOCK"));#if DEBUGVALSRprintf(" result: %p\n", ans);#endifreturn ans;}static int VerbatimLookup(const char *s){int i;for (i = 0; i < length(xxVerbatimList); i++) {if (strcmp(s, CHAR(STRING_ELT(xxVerbatimList, i))) == 0)return TRUE;}return FALSE;}static void xxSetInVerbEnv(SEXP envname){char buffer[256];if (VerbatimLookup(CHAR(STRING_ELT(envname, 0)))) {snprintf(buffer, sizeof(buffer), "\\end{%s}", CHAR(STRING_ELT(envname, 0)));PROTECT(xxInVerbEnv = ScalarString(mkChar(buffer)));} else xxInVerbEnv = NULL;}static void xxsavevalue(SEXP items, YYLTYPE *lloc){if (items) {PROTECT(Value = PairToVectorList(CDR(items)));UNPROTECT_PTR(items);} else {PROTECT(Value = allocVector(VECSXP, 1));SET_VECTOR_ELT(Value, 0, ScalarString(mkChar("")));setAttrib(VECTOR_ELT(Value, 0), install("latex_tag"), mkString("TEXT"));}if (!isNull(Value)) {setAttrib(Value, R_ClassSymbol, mkString("LaTeX"));setAttrib(Value, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));}}static SEXP xxtag(SEXP item, int type, YYLTYPE *lloc){setAttrib(item, install("latex_tag"), mkString(yytname[YYTRANSLATE(type)]));setAttrib(item, R_SrcrefSymbol, makeSrcref(lloc, SrcFile));return item;}/*----------------------------------------------------------------------------*/static int (*ptr_getc)(void);/* Private pushback, since file ungetc only guarantees one byte.We need up to one MBCS-worth */#define PUSHBACK_BUFSIZE 30static int pushback[PUSHBACK_BUFSIZE];static unsigned int npush = 0;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;if(npush) c = pushback[--npush]; else c = ptr_getc();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;return c;}static int xxungetc(int c){/* this assumes that c was the result of xxgetc; if not, some edits will be needed */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(npush >= PUSHBACK_BUFSIZE - 2) return R_EOF;pushback[npush++] = 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_ParseLatex(SEXP text, ParseStatus *status, SEXP srcfile)**/static SEXP ParseLatex(ParseStatus *status, SEXP srcfile){R_ParseContextLast = 0;R_ParseContext[0] = '\0';xxInVerbEnv = NULL;xxlineno = 1;xxcolno = 1;xxbyteno = 1;SrcFile = srcfile;npush = 0;Value = R_NilValue;if (yyparse()) *status = PARSE_ERROR;else *status = PARSE_OK;#if DEBUGVALSRprintf("ParseRd result: %p\n", Value);#endifUNPROTECT_PTR(Value);return Value;}static const char * nextchar_parse;/* need to handle incomplete last line */static int char_getc(void){int c;c = *nextchar_parse++;if (!c) {c = R_EOF;nextchar_parse--;}return (c);}attribute_hiddenSEXP R_ParseLatex(SEXP text, ParseStatus *status, SEXP srcfile){nextchar_parse = CHAR(STRING_ELT(text, 0));ptr_getc = char_getc;return ParseLatex(status, srcfile);}/*----------------------------------------------------------------------------** 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 */{ "\\begin", BEGIN },{ "\\end", END },{ "\\verb", VERB },{ 0, 0 }/* All other markup macros are rejected. */};/* Record the longest # directive here */#define DIRECTIVE_LEN 7static int KeywordLookup(const char *s){int i;for (i = 0; keywords[i].name; i++) {if (strcmp(keywords[i].name, s) == 0)return keywords[i].token;}return MACRO;}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 3"$undefined", "input","LATEXMACRO", "macro","ESCAPE", "macro",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");#endifif (!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 (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);}#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;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();if (xxInVerbEnv)return mkVerbEnv();c = xxgetc();switch (c) {case '%': return mkComment(c);case '\\':return mkMarkup(c);case R_EOF:return END_OF_INPUT;case LBRACE:return c;case RBRACE:return c;case '$': return c;}return mkText(c);}#define INITBUFSIZE 128static int mkText(int c){char st0[INITBUFSIZE];unsigned int nstext = INITBUFSIZE;char *stext = st0, *bp = st0;while(1) {switch (c) {case '\\':case '%':case LBRACE:case RBRACE:case '$':case R_EOF:goto stop;}TEXT_PUSH(c);c = xxgetc();};stop:xxungetc(c);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);if (c == R_EOF) xxungetc(c);else TEXT_PUSH(c);PROTECT(yylval = mkString2(stext, bp - stext));if(stext != st0) free(stext);return COMMENT;}static int mkMarkup(int c){char st0[INITBUFSIZE];unsigned int nstext = INITBUFSIZE;char *stext = st0, *bp = st0;int retval = 0;TEXT_PUSH(c);while (isalpha((c = xxgetc()))) TEXT_PUSH(c);/* One non-alpha allowed */if (bp - stext == 1) {TEXT_PUSH(c);TEXT_PUSH('\0');retval = MACRO;} else {TEXT_PUSH('\0');retval = KeywordLookup(stext);if (retval == VERB)retval = mkVerb(c); /* This makes the yylval */else if (c != ' ') /* Eat a space, but keep other terminators */xxungetc(c);}if (retval != VERB) {PROTECT(yylval = mkString(stext));}if(stext != st0) free(stext);return retval;}static int mkVerb(int c){char st0[INITBUFSIZE];unsigned int nstext = INITBUFSIZE;char *stext = st0, *bp = st0;int delim = c;TEXT_PUSH('\\'); TEXT_PUSH('v'); TEXT_PUSH('e'); TEXT_PUSH('r'); TEXT_PUSH('b');TEXT_PUSH(c);while ((c = xxgetc()) != delim) TEXT_PUSH(c);TEXT_PUSH(c);PROTECT(yylval = mkString2(stext, bp - stext));if(stext != st0) free(stext);return VERB;}static int mkVerbEnv(){char st0[INITBUFSIZE];unsigned int nstext = INITBUFSIZE;char *stext = st0, *bp = st0;int matched = 0, i;int c;while ((c = xxgetc()) != R_EOF && CHAR(STRING_ELT(xxInVerbEnv, 0))[matched]) {TEXT_PUSH(c);if (c == CHAR(STRING_ELT(xxInVerbEnv, 0))[matched])matched++;elsematched = 0;}if ( !CHAR(STRING_ELT(xxInVerbEnv, 0))[matched] ) {for (i = matched-1; i >= 0; i--)xxungetc(*(--bp));UNPROTECT_PTR(xxInVerbEnv);xxInVerbEnv = NULL;}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 (tok > 255 && tok != END_OF_INPUT)Rprintf(": %s", CHAR(STRING_ELT(yylval, 0)));Rprintf("\n");}setlastloc();return tok;}/* "do_parseRd".Internal( parseLatex(file, srcfile, verbose, basename, warningCalls) )If there is text then that is read and the other arguments are ignored.*/SEXP attribute_hidden do_parseLatex(SEXP call, SEXP op, SEXP args, SEXP env){SEXP s = R_NilValue, source, text;ParseStatus status;#if DEBUGMODEyydebug = 1;#endifcheckArity(op, args);R_ParseError = 0;R_ParseErrorMsg[0] = '\0';text = CAR(args); args = CDR(args);source = CAR(args); args = CDR(args);if(!isLogical(CAR(args)) || LENGTH(CAR(args)) != 1)error(_("invalid '%s' value"), "verbose");xxDebugTokens = asInteger(CAR(args)); args = CDR(args);xxVerbatimList = CAR(args); args = CDR(args);s = R_ParseLatex(text, &status, source);if (status != PARSE_OK) parseError(call, R_ParseError);return s;}