diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-30 15:55:12 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-30 15:55:12 -0700 |
commit | 5a99d771bef5537504cc6aab3bfa55fd678e5a5e (patch) | |
tree | 83e5604873a340bcd063448a55b73d30642dee32 /lisplib.c | |
parent | 1291f475df3fb719f89f5da3763e58d5091d33b9 (diff) | |
download | txr-5a99d771bef5537504cc6aab3bfa55fd678e5a5e.tar.gz txr-5a99d771bef5537504cc6aab3bfa55fd678e5a5e.tar.bz2 txr-5a99d771bef5537504cc6aab3bfa55fd678e5a5e.zip |
getopts: autoload: opt-error not interned.
* lisplib.c (getopts_set_entries): Add opt-error to list of
interned symbols. Without this, getopts throws sys:opt-error.
Reported by Paul A. Patience.
Diffstat (limited to 'lisplib.c')
-rw-r--r-- | lisplib.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -483,7 +483,7 @@ static val getopts_set_entries(val dlt, val fun) }; val name_noload[] = { lit("short"), lit("long"), lit("helptext"), lit("type"), - lit("in-args"), lit("out-args"), lit("cumul"), nil + lit("in-args"), lit("out-args"), lit("cumul"), lit("opt-error"), nil }; set_dlt_entries(dlt, name, fun); intern_only(name_noload); |