From d26c5805bcbd630dab0478c2d22503a6e32a83c1 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 13 Oct 2022 12:30:08 +0100 Subject: patch 9.0.0737: Lisp word only recognized when a space follows Problem: Lisp word only recognized when a space follows. Solution: Also match a word at the end of a line. Rename the test. Use a compiled function to avoid backslashes. --- src/indent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/indent.c') diff --git a/src/indent.c b/src/indent.c index 79162bf78..c6e3aaf33 100644 --- a/src/indent.c +++ b/src/indent.c @@ -1952,7 +1952,7 @@ lisp_match(char_u *p) { (void)copy_option_part(&word, buf, LSIZE, ","); len = (int)STRLEN(buf); - if (STRNCMP(buf, p, len) == 0 && p[len] == ' ') + if (STRNCMP(buf, p, len) == 0 && IS_WHITE_OR_NUL(p[len])) return TRUE; } return FALSE; -- cgit v1.2.1