diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2022-03-18 17:39:28 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-03-18 17:39:28 -0700 |
commit | 8806f0b62f983a9d76b8d108e7d480e93ae4afb5 (patch) | |
tree | f40190fdab804c6ec351ae04ba01bc39d297d4ea | |
parent | 11bffd3fe034af0fbe6a9bab4c382dca5d945b9d (diff) | |
download | txr-8806f0b62f983a9d76b8d108e7d480e93ae4afb5.tar.gz txr-8806f0b62f983a9d76b8d108e7d480e93ae4afb5.tar.bz2 txr-8806f0b62f983a9d76b8d108e7d480e93ae4afb5.zip |
configure: missing tab in shell escaping code.
* configure: a certain ' ' (four spaces between
single quotes is actually supposed to be a tab;
it must have been expanded by the editor.
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -103,7 +103,7 @@ for arg in "$0" ${@+"$@"} ; do *'"'* | *['$*?[(){};&|<>#']* | '~'* ) cmdline="$cmdline'$arg'" ;; - *' '* | *' '* ) + *' '* | *' '* ) cmdline="$cmdline\"$arg\"" ;; * ) |