summaryrefslogtreecommitdiff
path: root/sys/src/cmd/acme/look.c
diff options
context:
space:
mode:
authorOri Bernstein <ori@eigenstate.org>2021-04-14 20:30:24 -0700
committerOri Bernstein <ori@eigenstate.org>2021-04-14 20:30:24 -0700
commit0256a34560a58c7fffe4a83476efd03d64c9a783 (patch)
tree278b6ed67188ab38e23b9b390997967ffcc61362 /sys/src/cmd/acme/look.c
parenta90a801685553329a8626237bf250421f9e1249c (diff)
acme: fix border size, autoindent undo: imported from plan9port (thanks jxy)
origin: https://github.com/9fans/plan9port/pull/493 https://github.com/9fans/plan9port/pull/489 https://github.com/9fans/plan9port/pull/461
Diffstat (limited to 'sys/src/cmd/acme/look.c')
-rw-r--r--sys/src/cmd/acme/look.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/acme/look.c b/sys/src/cmd/acme/look.c
index ff0125300..42b449c74 100644
--- a/sys/src/cmd/acme/look.c
+++ b/sys/src/cmd/acme/look.c
@@ -314,7 +314,7 @@ isfilec(Rune r)
{
if(isalnum(r))
return TRUE;
- if(runestrchr(L".-+/:", r))
+ if(runestrchr(L".-+/:@", r))
return TRUE;
return FALSE;
}