diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-11-16 16:28:03 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-11-18 07:05:52 +0100 |
commit | b44a4bae7d5c1098709dfaffd122263e0f4c5bc6 (patch) | |
tree | 2789f5ab99317bf1e399f82b173e7d2ba3b1ce1c /lib/Makefile.am | |
parent | cb5e08b40d7444817c7eb6c1e4e8bf5208c2823c (diff) | |
download | sciteco-b44a4bae7d5c1098709dfaffd122263e0f4c5bc6.tar.gz |
standard lib: added getopt.tes for parsing command line options in scripts
* this uses an optstring compatible with getopt(3).
* It does not use repeated getopt calls to iterate options, though
but places the results in registers beginning with "getopt.".
E.g. option "C" will result in "getopt.C" being set after the
call to setopt.
String arguments are supported and are placed in the string part
of the getopt registers.
* The grosciteco.tes and symbols-extract.tes scripts make use of
getopt now, to simplify and clean up their command line handling.
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index a66aaef..69a7c02 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,6 +1,6 @@ dist_scitecolib_DATA = color.tes lexer.tes session.tes fnkeys.tes -dist_scitecolib_DATA += string.tes +dist_scitecolib_DATA += string.tes getopt.tes # Helper script for creating lexer definitions EXTRA_DIST = scite2co.lua |