* src/getargs.c (long_options): Remove duplicates.

* src/vmsgetargs.c, src/build.com, src/bison.cld, src/vmshlp.mar:
Remove.
* doc/bison.rnh: Remove.
* doc/bison.texinfo (VMS Invocation): Remove.
This commit is contained in:
Akim Demaille
2002-11-12 08:13:10 +00:00
parent 95612cfa60
commit 573a6cd356
10 changed files with 10 additions and 387 deletions

View File

@@ -268,7 +268,6 @@ Invoking Bison
* Bison Options:: All the options described in detail,
in alphabetical order by short options.
* Option Cross Key:: Alphabetical list of long options.
* VMS Invocation:: Bison command syntax on @acronym{VMS}.
Frequently Asked Questions
@@ -5906,7 +5905,6 @@ will produce @file{output.c++} and @file{outfile.h++}.
* Bison Options:: All the options described in detail,
in alphabetical order by short options.
* Option Cross Key:: Alphabetical list of long options.
* VMS Invocation:: Bison command syntax on @acronym{VMS}.
@end menu
@node Bison Options
@@ -6098,34 +6096,6 @@ the corresponding short option.
@end example
@end ifinfo
@node VMS Invocation
@section Invoking Bison under @acronym{VMS}
@cindex invoking Bison under @acronym{VMS}
@cindex @acronym{VMS}
The command line syntax for Bison on @acronym{VMS} is a variant of the usual
Bison command syntax---adapted to fit @acronym{VMS} conventions.
To find the @acronym{VMS} equivalent for any Bison option, start with the long
option, and substitute a @samp{/} for the leading @samp{--}, and
substitute a @samp{_} for each @samp{-} in the name of the long option.
For example, the following invocation under @acronym{VMS}:
@example
bison /debug/name_prefix=bar foo.y
@end example
@noindent
is equivalent to the following command under @acronym{POSIX}.
@example
bison --debug --name-prefix=bar foo.y
@end example
The @acronym{VMS} file system does not permit filenames such as
@file{foo.tab.c}. In the above example, the output file
would instead be named @file{foo_tab.c}.
@c ================================================= Invoking Bison
@node FAQ