summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-03-18 17:39:28 -0700
committerKaz Kylheku <kaz@kylheku.com>2022-03-18 17:39:28 -0700
commita05104a12feb19f70c542446f93ea206430766f2 (patch)
treef40190fdab804c6ec351ae04ba01bc39d297d4ea
parente15e668a0ff03ccd3576f5cf23804bd36d608240 (diff)
downloadtxr-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-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 4846072e..f001ba97 100755
--- a/configure
+++ b/configure
@@ -103,7 +103,7 @@ for arg in "$0" ${@+"$@"} ; do
*'"'* | *['$*?[(){};&|<>#']* | '~'* )
cmdline="$cmdline'$arg'"
;;
- *' '* | *' '* )
+ *' '* | *' '* )
cmdline="$cmdline\"$arg\""
;;
* )