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 | a05104a12feb19f70c542446f93ea206430766f2 (patch) | |
tree | f40190fdab804c6ec351ae04ba01bc39d297d4ea | |
parent | e15e668a0ff03ccd3576f5cf23804bd36d608240 (diff) | |
download | txr-a05104a12feb19f70c542446f93ea206430766f2.tar.gz txr-a05104a12feb19f70c542446f93ea206430766f2.tar.bz2 txr-a05104a12feb19f70c542446f93ea206430766f2.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\"" ;; * ) |