Revert "Treat table height as int instead of short"
This reverts commit 0c9aebb26a
.
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=842623
This commit is contained in:
@@ -14,7 +14,7 @@ typedef struct _listitem {
|
||||
typedef struct _generallist {
|
||||
ListItem *first;
|
||||
ListItem *last;
|
||||
int nitem;
|
||||
short nitem;
|
||||
} GeneralList;
|
||||
|
||||
extern ListItem *newListItem(void *s, ListItem *n, ListItem *p);
|
||||
@@ -36,7 +36,7 @@ typedef struct _textlistitem {
|
||||
typedef struct _textlist {
|
||||
TextListItem *first;
|
||||
TextListItem *last;
|
||||
int nitem;
|
||||
short nitem;
|
||||
} TextList;
|
||||
|
||||
#define newTextList() ((TextList *)newGeneralList())
|
||||
@@ -62,7 +62,7 @@ typedef struct _textlinelistitem {
|
||||
typedef struct _textlinelist {
|
||||
TextLineListItem *first;
|
||||
TextLineListItem *last;
|
||||
int nitem;
|
||||
short nitem;
|
||||
} TextLineList;
|
||||
|
||||
extern TextLine *newTextLine(Str line, int pos);
|
||||
|
Reference in New Issue
Block a user