output: New function text_item_create_nocopy().
authorBen Pfaff <blp@cs.stanford.edu>
Tue, 7 Dec 2010 04:54:40 +0000 (20:54 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 20 Mar 2011 16:41:55 +0000 (09:41 -0700)
src/output/text-item.c
src/output/text-item.h

index cb21caa2e7c0e5addd823055fca48c1dc4b472e6..1531656276c7dd01116eff4b094fc9933362494e 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2009, 2011 Free Software Foundation, Inc.
+   Copyright (C) 2009, 2010, 2011 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
 #include "gettext.h"
 #define _(msgid) gettext (msgid)
 
-static struct text_item *
-allocate_text_item (enum text_item_type type, char *text)
+/* Creates and returns a new text item containing TEXT and the specified TYPE.
+   The new text item takes ownership of TEXT. */
+struct text_item *
+text_item_create_nocopy (enum text_item_type type, char *text)
 {
   struct text_item *item = xmalloc (sizeof *item);
   output_item_init (&item->output_item, &text_item_class);
@@ -47,7 +49,7 @@ allocate_text_item (enum text_item_type type, char *text)
 struct text_item *
 text_item_create (enum text_item_type type, const char *text)
 {
-  return allocate_text_item (type, xstrdup (text));
+  return text_item_create_nocopy (type, xstrdup (text));
 }
 
 /* Creates and returns a new text item containing a copy of FORMAT, which is
@@ -60,7 +62,7 @@ text_item_create_format (enum text_item_type type, const char *format, ...)
   va_list args;
 
   va_start (args, format);
-  item = allocate_text_item (type, xvasprintf (format, args));
+  item = text_item_create_nocopy (type, xvasprintf (format, args));
   va_end (args);
 
   return item;
index 5f1e8a2e01a9e59b194b707cb7fad5b287156f13..da1b208a5ea8cfd40ec5c27339cd2c8307d814a3 100644 (file)
@@ -1,5 +1,5 @@
 /* PSPP - a program for statistical analysis.
-   Copyright (C) 2009, 2011 Free Sonftware Foundation, Inc.
+   Copyright (C) 2009, 2010, 2011 Free Sonftware 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
@@ -67,6 +67,7 @@ struct text_item
   };
 
 struct text_item *text_item_create (enum text_item_type, const char *text);
+struct text_item *text_item_create_nocopy (enum text_item_type, char *text);
 struct text_item *text_item_create_format (enum text_item_type,
                                            const char *format, ...)
   PRINTF_FORMAT (2, 3);