diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-06-28 06:52:06 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-06-28 06:52:06 -0700 |
commit | cc630b15fae496bc39fe74dcca900271ecbd0482 (patch) | |
tree | e59abc139727ea36896b5cbe7245a77ea7c84b4f | |
parent | 66f2690b3234aaf93a8f2d1fc2f58f714ef5f40d (diff) | |
download | txr-cc630b15fae496bc39fe74dcca900271ecbd0482.tar.gz txr-cc630b15fae496bc39fe74dcca900271ecbd0482.tar.bz2 txr-cc630b15fae496bc39fe74dcca900271ecbd0482.zip |
doc-lookup: *doc-url* variable must be dynamic.
* stdlib/doc-lookup.tl (*doc-url*): Define with defvar,
not defvarl. Problem reported by Paul A. Patience.
-rw-r--r-- | stdlib/doc-lookup.tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdlib/doc-lookup.tl b/stdlib/doc-lookup.tl index f1d0d380..46c60d6e 100644 --- a/stdlib/doc-lookup.tl +++ b/stdlib/doc-lookup.tl @@ -1,6 +1,6 @@ (load "doc-syms") -(defvarl usr:*doc-url* "https://www.nongnu.org/txr/txr-manpage.html") +(defvar usr:*doc-url* "https://www.nongnu.org/txr/txr-manpage.html") (defvar os-symbol (if (ignerr (dlsym (dlopen "libandroid.so") "AAsset_close")) |