diff options
Diffstat (limited to 'Doc/lib/libgetopt.tex')
-rw-r--r-- | Doc/lib/libgetopt.tex | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/lib/libgetopt.tex b/Doc/lib/libgetopt.tex index 7ab46e4052..0d2f4a0bfb 100644 --- a/Doc/lib/libgetopt.tex +++ b/Doc/lib/libgetopt.tex @@ -1,4 +1,5 @@ \section{Standard Module \sectcode{getopt}} +\label{module-getopt} \stmodindex{getopt} This module helps scripts to parse the command line arguments in @@ -56,7 +57,7 @@ An example using only \UNIX{} style options: ['a1', 'a2'] >>> \end{verbatim}\ecode - +% Using long option names is equally easy: \bcode\begin{verbatim} @@ -72,7 +73,7 @@ Using long option names is equally easy: ['a1', 'a2'] >>> \end{verbatim}\ecode - +% The exception \code{getopt.error = 'getopt.error'} is raised when an unrecognized option is found in the argument list or |