diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2015-10-21 14:31:23 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2015-10-21 14:31:23 +0800 |
commit | 000bed18daaf2ed26a2b6371f6032881a6e5cdb9 (patch) | |
tree | 2cd356158a4c410d828a1ef3beae26b286766a18 | |
parent | e29e9d49f18a5b794cb9e3ae60d8abd819140741 (diff) | |
download | compiler2015-000bed18daaf2ed26a2b6371f6032881a6e5cdb9.tar.gz compiler2015-000bed18daaf2ed26a2b6371f6032881a6e5cdb9.tar.zst compiler2015-000bed18daaf2ed26a2b6371f6032881a6e5cdb9.zip |
Add modelines for vim
-rw-r--r-- | lexer.l | 1 | ||||
-rw-r--r-- | symbol-table.c | 2 | ||||
-rw-r--r-- | symbol-table.h | 2 |
3 files changed, 5 insertions, 0 deletions
@@ -152,3 +152,4 @@ int main(int argc, char **argv) return 0; } +// vim: set sw=4 ts=4 sts=4 et: diff --git a/symbol-table.c b/symbol-table.c index 2620346..a281e5e 100644 --- a/symbol-table.c +++ b/symbol-table.c @@ -82,3 +82,5 @@ void printSymTab(void) { } } } + +// vim: set sw=4 ts=4 sts=4 et: diff --git a/symbol-table.h b/symbol-table.h index 3b5983e..e234a43 100644 --- a/symbol-table.h +++ b/symbol-table.h @@ -10,3 +10,5 @@ typedef struct symtab symtab; symtab* lookup(char *name); void insertID(char *name); void printSymTab(void); + +// vim: set sw=4 ts=4 sts=4 et: |