improve macro error messages
[pspp] / src / language / utilities / title.c
index a0a71e9cee7d4481d0fd143d1e56bf754c4b0edb..323bdf3fa51e79d35c375e8fc6a4dde22431a979 100644 (file)
@@ -59,7 +59,7 @@ parse_title (struct lexer *lexer, void (*set_title) (const char *))
 
       /* Get the raw representation of all the tokens, including any space
          between them, and use it as the title. */
-      char *title = ss_xstrdup (lex_next_representation (lexer, 0, n - 1));
+      char *title = lex_next_representation (lexer, 0, n - 1);
       set_title (title);
       free (title);