]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/parser.yy
changes: mention that decimal numbers can be written without #
[lilypond.git] / lily / parser.yy
index 89123a5e5bee635ada7d01d29fffb13efbbbe4b8..53bddf5eaf64dcf48824e05740d20d330919faab 100644 (file)
@@ -2280,17 +2280,6 @@ string:
                $$ = $1;
        }
        | full_markup
-       | string '+' string {
-               if (!scm_is_string ($1)) {
-                       parser->parser_error (@1, (_ ("simple string expected")));
-                       $1 = scm_string (SCM_EOL);
-               }
-               if (!scm_is_string ($3)) {
-                       parser->parser_error (@3, (_ ("simple string expected")));
-                       $3 = scm_string (SCM_EOL);
-               }
-               $$ = scm_string_append (scm_list_2 ($1, $3));
-       }
        ;
 
 simple_string: STRING {