a44421a79fb36cc2036fe116b97ea3bc9590cd0c
braney
  Fri Dec 2 09:34:39 2011 -0800
removed rcsid (#295)
diff --git src/lib/kxTok.c src/lib/kxTok.c
index 505d912..a9801e0 100644
--- src/lib/kxTok.c
+++ src/lib/kxTok.c
@@ -1,26 +1,25 @@
 /* kxTok - quick little tokenizer for stuff first
  * loaded into memory.  Originally developed for
  * "Key eXpression" evaluator. 
  *
  * This file is copyright 2002 Jim Kent, but license is hereby
  * granted for all use - public, private or commercial. */
 
 #include "common.h"
 #include "kxTok.h"
 
-static char const rcsid[] = "$Id: kxTok.c,v 1.10 2004/11/05 23:08:58 kent Exp $";
 
 boolean includeQuotes = FALSE;
 
 static struct kxTok *kxTokNew(enum kxTokType type, char *string, int stringSize,
 	boolean spaceBefore)
 /* Allocate and initialize a new token. */
 {
 struct kxTok *tok;
 int totalSize = stringSize + sizeof(*tok);
 tok = needMem(totalSize);
 tok->type = type;
 tok->spaceBefore = spaceBefore;
 memcpy(tok->string, string, stringSize);
 return tok;
 }