pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] Changes to pspp/src/tab.c


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/tab.c
Date: Tue, 01 Mar 2005 03:16:38 -0500

Index: pspp/src/tab.c
diff -u pspp/src/tab.c:1.19 pspp/src/tab.c:1.20
--- pspp/src/tab.c:1.19 Fri Jan 14 04:05:47 2005
+++ pspp/src/tab.c      Tue Mar  1 08:16:16 2005
@@ -156,7 +156,7 @@
       int mr1 = min (nr, t->nr);
       int mc1 = min (nc, t->nc);
       
-      struct len_string *new_cc;
+      struct fixed_string *new_cc;
       unsigned char *new_ct;
       int r;
 
@@ -410,7 +410,7 @@
    the resultant string into S in TABLE's pool. */
 static void
 text_format (struct tab_table *table, int opt, const char *text, va_list args,
-            struct len_string *s)
+            struct fixed_string *s)
 {
   int len;
   
@@ -726,7 +726,7 @@
   opt |= TAB_JOIN;
   
   {
-    struct len_string *cc = &table->cc[x1 + y1 * table->cf];
+    struct fixed_string *cc = &table->cc[x1 + y1 * table->cf];
     unsigned char *ct = &table->ct[x1 + y1 * table->cf];
     const int ofs = table->cf - (x2 - x1);
 
@@ -751,7 +751,7 @@
 /* Sets cell (C,R) in TABLE, with options OPT, to contents STRING. */
 void
 tab_raw (struct tab_table *table, int c, int r, unsigned opt,
-        struct len_string *string)
+        struct fixed_string *string)
 {
   assert (table != NULL && string != NULL);
   




reply via email to

[Prev in Thread] Current Thread [Next in Thread]