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 | beddc938a88b8b772182bb934fdd1cc9607cd34e (patch) | |
tree | 2550d6b502da1edcee1006c6e4101e18682c3f87 | |
parent | 3e8d788a97a0f27c60670c6b8fa73d9548a9a8ef (diff) | |
download | txr-beddc938a88b8b772182bb934fdd1cc9607cd34e.tar.gz txr-beddc938a88b8b772182bb934fdd1cc9607cd34e.tar.bz2 txr-beddc938a88b8b772182bb934fdd1cc9607cd34e.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 |