pspp-convert: Add options for selecting variables and controlling output.
[pspp] / src / language / command.c
index 8f955b3e4987022ab1bd66950bf0a956668cd206..cfe4ecf14bc6ae1c8451fed256bcac33a17dc506 100644 (file)
@@ -36,9 +36,8 @@
 #include "libpspp/i18n.h"
 #include "libpspp/message.h"
 #include "libpspp/str.h"
-#include "output/text-item.h"
+#include "output/group-item.h"
 
-#include "xalloc.h"
 #include "xmalloca.h"
 
 #include "gettext.h"
@@ -199,7 +198,8 @@ do_parse_command (struct lexer *lexer,
       result = CMD_FAILURE;
       goto finish;
     }
-  text_item_submit (text_item_create (TEXT_ITEM_COMMAND_OPEN, command->name));
+  group_open_item_submit (group_open_item_create_nocopy (
+                            utf8_to_title (command->name)));
   opened = true;
 
   if (command->function == NULL)
@@ -247,8 +247,7 @@ finish:
       lex_get (lexer);
 
   if (opened)
-    text_item_submit (text_item_create (TEXT_ITEM_COMMAND_CLOSE,
-                                        command->name));
+    group_close_item_submit (group_close_item_create ());
 
   return result;
 }