From 40892a7415bb02c5463fe56dc79ad44724c770e9 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Tue, 11 Feb 2020 03:40:13 -0500 Subject: Fix completeReplace iteration --- complete.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/complete.c b/complete.c index 2f5275f..041aade 100644 --- a/complete.c +++ b/complete.c @@ -124,7 +124,7 @@ size_t completeID(const char *str) { void completeReplace(size_t id, const char *old, const char *new) { struct Node *next = NULL; - for (struct Node *node = head; node; node = node->next) { + for (struct Node *node = head; node; node = next) { next = node->next; if (id && node->id != id) continue; if (strcmp(node->str, old)) continue; -- cgit 1.4.1 b18ae'>this commit dontfiles
summary refs log tree commit diff
path: root/doc/zlib/inflateSync.3 (unfollow)
Commit message (Collapse)Author
2021-01-12List both Makefile and html.sh under README.7June McEnroe
2021-01-12Add htagml exampleJune McEnroe
2021-01-12Use mandoc and htagml for bin htmlJune McEnroe
2021-01-12Add htagmlJune McEnroe
2021-01-12Replace causal.agency with a simple mdoc pageJune McEnroe
2021-01-11Publish "Using vi"June McEnroe
2021-01-11Enable diff.colorMovedJune McEnroe
2021-01-10Set less search case-insensitiveJune McEnroe
2021-01-10Set EXINITJune McEnroe
neovim is laggy as hell in my OpenBSD VM, so I switched to vi so I could type without getting frustrated.
2021-01-09Add c -t flag to print expression typeJune McEnroe
Also add missing float case.
2021-01-05Update taglineJune McEnroe