6e5ee11ca95cd971984038cf65bae00d9c898707 galt Wed Jun 4 15:40:02 2014 -0700 Since we have git, it is easy to rename errabort.c to errAbort.c without losing any history. diff --git src/lib/tokenizer.c src/lib/tokenizer.c index e6e1895..9dfdc59 100644 --- src/lib/tokenizer.c +++ src/lib/tokenizer.c @@ -1,25 +1,25 @@ /* tokenizer - A tokenizer structure that will chop up file into * tokens. It is aware of quoted strings and otherwise tends to return * white-space or punctuated-separated words, with punctuation in * a separate token. This is used by autoSql. */ /* Copyright (C) 2011 The Regents of the University of California * See README in this or parent directory for licensing information. */ #include "common.h" -#include "errabort.h" +#include "errAbort.h" #include "linefile.h" #include "tokenizer.h" struct tokenizer *tokenizerOnLineFile(struct lineFile *lf) /* Create a new tokenizer on open lineFile. */ { struct tokenizer *tkz; AllocVar(tkz); tkz->sAlloc = 128; tkz->string = needMem(tkz->sAlloc); tkz->lf = lf; tkz->curLine = tkz->linePt = ""; return tkz; }