OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |