summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwlestes <wlestes>2001-08-26 16:14:28 +0000
committerwlestes <wlestes>2001-08-26 16:14:28 +0000
commit233d77eb26df8edf5c07963825a52476136a2f83 (patch)
tree6e09d36c62ef11f74458534d007547f99f6dda08
parent7b3d3c01ad99ebc96be067aead827990d3f2195a (diff)
downloadflex-233d77eb26df8edf5c07963825a52476136a2f83.tar.gz
remove argv_fixup; fix typo in error message; changes from millaway's branch
-rw-r--r--main.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/main.c b/main.c
index 43d8c3a..39dc161 100644
--- a/main.c
+++ b/main.c
@@ -49,9 +49,6 @@ void flexinit PROTO((int, char**));
void readin PROTO((void));
void set_up_initial_allocations PROTO((void));
-#ifdef NEED_ARGV_FIXUP
-extern void argv_fixup PROTO((int *, char ***));
-#endif
/* these globals are all defined and commented in flexdef.h */
@@ -141,9 +138,6 @@ char **argv;
#ifdef THINK_C
argc = ccommand( &argv );
#endif
-#ifdef NEED_ARGV_FIXUP
- argv_fixup( &argc, &argv );
-#endif
flexinit( argc, argv );
@@ -823,7 +817,7 @@ char **argv;
case 'R':
if ( i != 1 )
flexerror(
- _( "-P flag must be given separately" ) );
+ _( "-R flag must be given separately" ) );
reentrant = true;
/* Optional arguments follow -R */