Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(277)

Side by Side Diff: lily/parser.yy

Issue 341250043: Parser: E_BACKSLASH should be two backslashes (Closed)
Patch Set: Created 6 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* -*- mode: c++; c-file-style: "linux"; indent-tabs-mode: t -*- */ 1 /* -*- mode: c++; c-file-style: "linux"; indent-tabs-mode: t -*- */
2 /* 2 /*
3 This file is part of LilyPond, the GNU music typesetter. 3 This file is part of LilyPond, the GNU music typesetter.
4 4
5 Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl> 5 Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 Jan Nieuwenhuizen <janneke@gnu.org> 6 Jan Nieuwenhuizen <janneke@gnu.org>
7 7
8 LilyPond is free software: you can redistribute it and/or modify 8 LilyPond is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by 9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or 10 the Free Software Foundation, either version 3 of the License, or
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 308
309 %token CHORD_BASS "/+" 309 %token CHORD_BASS "/+"
310 %token CHORD_CARET "^" 310 %token CHORD_CARET "^"
311 %token CHORD_COLON ":" 311 %token CHORD_COLON ":"
312 %token CHORD_MINUS "-" 312 %token CHORD_MINUS "-"
313 %token CHORD_SLASH "/" 313 %token CHORD_SLASH "/"
314 %token ANGLE_OPEN "<" 314 %token ANGLE_OPEN "<"
315 %token ANGLE_CLOSE ">" 315 %token ANGLE_CLOSE ">"
316 %token DOUBLE_ANGLE_OPEN "<<" 316 %token DOUBLE_ANGLE_OPEN "<<"
317 %token DOUBLE_ANGLE_CLOSE ">>" 317 %token DOUBLE_ANGLE_CLOSE ">>"
318 %token E_BACKSLASH "\\" 318 %token E_BACKSLASH "\\\\"
319 %token E_EXCLAMATION "\\!" 319 %token E_EXCLAMATION "\\!"
320 %token E_PLUS "\\+" 320 %token E_PLUS "\\+"
321 %token EXTENDER "__" 321 %token EXTENDER "__"
322 322
323 /* 323 /*
324 If we give names, Bison complains. 324 If we give names, Bison complains.
325 */ 325 */
326 %token FIGURE_CLOSE /* "\\>" */ 326 %token FIGURE_CLOSE /* "\\>" */
327 %token FIGURE_OPEN /* "\\<" */ 327 %token FIGURE_OPEN /* "\\<" */
328 %token FIGURE_SPACE "_" 328 %token FIGURE_SPACE "_"
(...skipping 4400 matching lines...) Expand 10 before | Expand all | Expand 10 after
4729 Lily_lexer *lex = parser->lexer_; 4729 Lily_lexer *lex = parser->lexer_;
4730 4730
4731 lex->lexval_ = s; 4731 lex->lexval_ = s;
4732 lex->lexloc_ = loc; 4732 lex->lexloc_ = loc;
4733 int tok = lex->pop_extra_token (); 4733 int tok = lex->pop_extra_token ();
4734 if (tok >= 0) 4734 if (tok >= 0)
4735 return tok; 4735 return tok;
4736 lex->prepare_for_next_token (); 4736 lex->prepare_for_next_token ();
4737 return lex->yylex (); 4737 return lex->yylex ();
4738 } 4738 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b