977b1ef8d4ee7f846b4ae3c96013610353ac8317
kent
  Tue Apr 17 21:34:29 2012 -0700
Fixing usage message.
diff --git src/utils/textBetween/textBetween.c src/utils/textBetween/textBetween.c
index 9575cb2..d5993dd 100644
--- src/utils/textBetween/textBetween.c
+++ src/utils/textBetween/textBetween.c
@@ -5,31 +5,30 @@
 #include "options.h"
 #include "obscure.h"
 
 /* Command line variables. */
 boolean withEnds;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "textBetween - Print all text in file between two input strings including the strings.\n"
   "usage:\n"
   "   textBetween before after fileName\n"
   "options:\n"
   "   -withEnds - If set include the before and after strings in the output\n"
-  "   -xxx=XXX\n"
   );
 }
 
 static struct optionSpec options[] = {
    {"withEnds", OPTION_BOOLEAN},
    {NULL, 0},
 };
 
 void textBetween(char *before, char *after, char *fileName)
 /* textBetween - Print all text in file between two input strings.. */
 {
 char *gulp;
 size_t gulpSize;
 readInGulp(fileName, &gulp, &gulpSize);
 char *s = stringBetween(before, after, gulp);