From 80191306f44ab262c83b354d2e4442e807249aeb Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Tue, 14 Apr 2020 21:19:00 -0400 Subject: Parse . as an atom on its own --- imap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'imap.c') diff --git a/imap.c b/imap.c index 9743ac8..b47a520 100644 --- a/imap.c +++ b/imap.c @@ -97,7 +97,7 @@ static void imapLine(FILE *imap) { } static struct Data parseAtom(void) { - size_t len = strcspn(ptr, " ()[]{\""); + size_t len = (*ptr == '.' ? 1 : strcspn(ptr, " .()[]{\"")); struct Data data = { .type = Atom, .atom = atomn(ptr, len), -- cgit 1.4.1 dd27209c4a292d4ee7e0254c026ceb5253699'>this commit dontfiles
summary refs log tree commit diff
path: root/www/photo.causal.agency/2024-06-08/R1-07534-024A.txt (unfollow)
Commit message (Collapse)Author
2026-03-23Add -ll for hilexJune McEnroe
huh. should have always been there I guess, but now it actually matters, at least on OpenBSD?
2026-02-17Remove photo metadata directoriesJune McEnroe
2026-02-17Ignore photo metadataJune McEnroe
I just don't want to be adding all this stuff to git.
2026-02-16Populate films datalist with 20 most recently usedJune McEnroe
2026-02-16Select last used bodyJune McEnroe
2026-02-15Don't break on trip with removed bodyJune McEnroe
2026-02-11Keep manpath.conf sortedJune McEnroe