From 0aea8e6e0aca678e3ea50b5a01d1e4e628f7fcad Mon Sep 17 00:00:00 2001 From: TwoFinger Date: Fri, 30 Mar 2018 04:52:10 +0300 Subject: Fix "parenthese" in identifiers --- text-motions.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'text-motions.h') diff --git a/text-motions.h b/text-motions.h index a51fd08..061ff30 100644 --- a/text-motions.h +++ b/text-motions.h @@ -114,8 +114,8 @@ size_t text_section_prev(Text*, size_t pos); */ size_t text_block_start(Text*, size_t pos); size_t text_block_end(Text*, size_t pos); -size_t text_parenthese_start(Text*, size_t pos); -size_t text_parenthese_end(Text*, size_t pos); +size_t text_parenthesis_start(Text*, size_t pos); +size_t text_parenthesis_end(Text*, size_t pos); /* search coresponding '(', ')', '{', '}', '[', ']', '>', '<', '"', ''' */ size_t text_bracket_match(Text*, size_t pos); /* same as above but explicitly specify symbols to match */ -- cgit v1.2.3