diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-08-02 20:36:44 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-08-02 20:36:44 -0700 |
commit | c19688edad9d7c0a79e2eb91a35e82c12a536af3 (patch) | |
tree | ce49f4596db7b358f9d4b731e39f0968daa5b53b | |
parent | 72cb121963ce91abb9b718c32137fb9e9e9bd469 (diff) | |
download | txr-c19688edad9d7c0a79e2eb91a35e82c12a536af3.tar.gz txr-c19688edad9d7c0a79e2eb91a35e82c12a536af3.tar.bz2 txr-c19688edad9d7c0a79e2eb91a35e82c12a536af3.zip |
doc: option processing fixes.
* txr.1: Wording change in introductory paragraph. Error in
description of Boolean options.
-rw-r--r-- | txr.1 | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -50081,7 +50081,7 @@ the POSIX-style options from a list of command-line arguments. The supported options can be defined as a list of option descriptor objects each of which is constructed by a call to the .code opt -function. Each option can have a long or short name, or both, +function. Each option can have a long name, a short name, a type, and a description. The @@ -50123,7 +50123,8 @@ followed by multiple short option characters. An option can take an argument, in which case the argument is required. An option which takes no argument is Boolean, and a Boolean option -never takes an argument: "takes argument" and "Boolean" are synonymous. +never takes an argument: "takes no argument" and "Boolean" effectively +mean the same thing. Long options are invoked as an argument which begins with a .code -- |