aboutsummaryrefslogtreecommitdiff
path: root/src/hyper/node.h
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@axiomatics.org>2016-01-25 01:10:43 -0800
committerGabriel Dos Reis <gdr@axiomatics.org>2016-01-25 01:10:43 -0800
commit0093f04cb53e58151ad3bdfbff328d564ff17caf (patch)
tree09f081e62de8e13528f1068c62e4c2d1075d4514 /src/hyper/node.h
parentffe9a032601ffb59a10141bce13b4322a1584e87 (diff)
downloadopen-axiom-0093f04cb53e58151ad3bdfbff328d564ff17caf.tar.gz
Misc. cleanup
Diffstat (limited to 'src/hyper/node.h')
-rw-r--r--src/hyper/node.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/hyper/node.h b/src/hyper/node.h
index fadc575f..9573d80d 100644
--- a/src/hyper/node.h
+++ b/src/hyper/node.h
@@ -81,7 +81,8 @@ struct GroupItem;
/** I am implementing a state node stack, this is the structure I store **/
typedef struct StateNode {
- int last_ch, last_token, input_type;
+ int last_ch, last_token;
+ SourceInputKind input_type;
long fpos, keyword_fpos;
long page_start_fpos;
Token token;
@@ -124,7 +125,7 @@ typedef struct ItemStack {
typedef struct PasteNode {
char *name;
- int where; /* where should I be parsing from? */
+ SourceInputKind where; /* where should I be parsing from? */
short int hasbutton;
short int haspaste;
struct GroupItem *group;