X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Futilities%2Ftitle.c;h=82f7be50f5341b5b8cdddf69d0aba116dbafd302;hb=refs%2Fbuilds%2F20101125030504%2Fpspp;hp=fe826db155dadb8ad1b5cd97d2df7709399171ba;hpb=d0b91eae59319ab2756d0d43b9cb15eb9cd3c234;p=pspp diff --git a/src/language/utilities/title.c b/src/language/utilities/title.c index fe826db155..82f7be50f5 100644 --- a/src/language/utilities/title.c +++ b/src/language/utilities/title.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2007 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2007, 2010 Free Software Foundation, Inc. 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 @@ -52,15 +52,12 @@ cmd_subtitle (struct lexer *lexer, struct dataset *ds UNUSED) static int parse_title (struct lexer *lexer, enum text_item_type type) { - int c; - - c = lex_look_ahead (lexer); - if (c == '"' || c == '\'') + if (lex_look_ahead (lexer) == T_STRING) { lex_get (lexer); if (!lex_force_string (lexer)) return CMD_FAILURE; - set_title (ds_cstr (lex_tokstr (lexer)), type); + set_title (lex_tokcstr (lexer), type); lex_get (lexer); return lex_end_of_command (lexer); } @@ -117,7 +114,7 @@ cmd_document (struct lexer *lexer, struct dataset *ds) end_dot = lex_end_dot (lexer); ds_assign_string (&line, lex_entire_line_ds (lexer)); if (end_dot) - ds_put_char (&line, '.'); + ds_put_byte (&line, '.'); dict_add_document_line (dict, ds_cstr (&line)); lex_discard_line (lexer); @@ -152,7 +149,7 @@ cmd_add_documents (struct lexer *lexer, struct dataset *ds) while ( lex_is_string (lexer)) { - dict_add_document_line (dict, ds_cstr (lex_tokstr (lexer))); + dict_add_document_line (dict, lex_tokcstr (lexer)); lex_get (lexer); }