diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2020-03-14 20:04:29 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2020-03-14 20:04:29 -0700 |
commit | 592688572c0d0320dc9aabb931341d715bca141d (patch) | |
tree | b0b7ffcf05ca0d9313e978ce8513213ce5b6c2ea | |
parent | 7b990d2d3b36da96223ef4f203e85f954fcc32e1 (diff) | |
download | txr-592688572c0d0320dc9aabb931341d715bca141d.tar.gz txr-592688572c0d0320dc9aabb931341d715bca141d.tar.bz2 txr-592688572c0d0320dc9aabb931341d715bca141d.zip |
tags: useless use of quasiliteral.
* txr.tl (toplevel): In the usage output, a few quasiliterals
should just be literals since nothing is interpolated.
-rwxr-xr-x | tags.tl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -156,8 +156,8 @@ (when o.help (put-line "\nUsage:\n") (put-line ` @{*load-path*} [options] {file|dir}*\n`) - (put-line `Directory arguments are recursively searched for *.tl files.`) - (put-line `If no arguments are given, the current directory is searched.`) + (put-line "Directory arguments are recursively searched for *.tl files.") + (put-line "If no arguments are given, the current directory is searched.") o.(opthelp) (exit t)) |