acme: accept paths with spaces in the 'name' ctl message
As it is allowed to use spaces in file names set interactively through
the tag since 7b1c85f, do not reject names with spaces in the 'name'
ctl message either.
Fixes #559.
This commit is contained in:
parent
29fae81fb7
commit
c57b71966e
1 changed files with 1 additions and 1 deletions
|
|
@ -691,7 +691,7 @@ xfidctlwrite(Xfid *x, Window *w)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
for(i=0; i<nr; i++)
|
for(i=0; i<nr; i++)
|
||||||
if(r[i] <= ' '){
|
if(r[i] < ' '){
|
||||||
err = "bad character in file name";
|
err = "bad character in file name";
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue