X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Foutput%2Ftable.h;h=4ecaa35d4fb4a4a59aea440fc20fd5e93aba6dd1;hb=b8e1b562ffde66d72294214967741ab88156d7e7;hp=54995600cb1fa2313ebf9103b21a4a74180c2e4d;hpb=0d5394b2c9148c6e8664d58df8966565578b2597;p=pspp diff --git a/src/output/table.h b/src/output/table.h index 54995600cb..4ecaa35d4f 100644 --- a/src/output/table.h +++ b/src/output/table.h @@ -56,8 +56,8 @@ struct variable; enum table_axis { TABLE_HORZ, - TABLE_VERT, - TABLE_N_AXES + TABLE_VERT +#define TABLE_N_AXES 2 }; struct cell_color @@ -199,9 +199,7 @@ enum /* Given line styles A and B (each one of the TAL_* enumeration constants above), returns a line style that "combines" them, that is, that gives a reasonable line style choice for a rule for different reasons should have - both styles A and B. - - Used especially for pasting tables together (see table_paste()). */ + both styles A and B. */ static inline int table_rule_combine (int a, int b) { return a > b ? a : b;