diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-08-16 07:32:32 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-08-16 07:32:32 -0700 |
commit | 0314eab65dd6d48656f8be660b1649a3930285a4 (patch) | |
tree | 2550d6b502da1edcee1006c6e4101e18682c3f87 | |
parent | 0db434fc6a11f694aeda1f3dc79d4ef090282056 (diff) | |
download | txr-0314eab65dd6d48656f8be660b1649a3930285a4.tar.gz txr-0314eab65dd6d48656f8be660b1649a3930285a4.tar.bz2 txr-0314eab65dd6d48656f8be660b1649a3930285a4.zip |
doc: typo in *stdnull* example.
* txr.1: Fix misspelled *stderr* in example demonstrating
binding of *stderr* to *stdnull*.
-rw-r--r-- | txr.1 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -60161,7 +60161,7 @@ execution of external utilities. .verb ;; redirect output of ls *.txt command to /dev/null - (let ((*stderr *stdnull*)) + (let ((*stderr* *stdnull*)) (sh "ls *.txt")) .brev |