output: Add support for vertical alignment of cells.
[pspp] / tests / output / render-test.c
index 2a874d1c917c7f3948db1cf35811c7e0e0799473..e286f6bea4c044ca4573e7d879278a419ba269a2 100644 (file)
@@ -426,17 +426,17 @@ read_table (FILE *stream)
                 break;
 
               case '(':
-                opt &= ~TAB_ALIGNMENT;
+                opt &= ~TAB_HALIGN;
                 opt |= TAB_LEFT;
                 break;
 
               case ')':
-                opt &= ~TAB_ALIGNMENT;
+                opt &= ~TAB_HALIGN;
                 opt |= TAB_RIGHT;
                 break;
 
               case '|':
-                opt &= ~TAB_ALIGNMENT;
+                opt &= ~TAB_HALIGN;
                 opt |= TAB_CENTER;
                 break;