mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
acme: allow @ in file names
For upspin and other tools that put email addresses in names.
This commit is contained in:
parent
6c8e44dd2e
commit
ac487c754e
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@ search(Text *ct, Rune *r, uint n)
|
|||
int
|
||||
isfilec(Rune r)
|
||||
{
|
||||
static Rune Lx[] = { '.', '-', '+', '/', ':', 0 };
|
||||
static Rune Lx[] = { '.', '-', '+', '/', ':', '@', 0 };
|
||||
if(isalnum(r))
|
||||
return TRUE;
|
||||
if(runestrchr(Lx, r))
|
||||
|
|
Loading…
Reference in a new issue