aboutsummaryrefslogtreecommitdiff
path: root/src/charset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/charset.c')
-rw-r--r--src/charset.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/charset.c b/src/charset.c
index 31fa78d30c..65f3621ee8 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1666,8 +1666,7 @@ char_u* skiptowhite(char_u *p)
/// @param p
///
/// @return Pointer to the next whitespace character.
-char_u* skiptowhite_esc(char_u *p)
-{
+char_u* skiptowhite_esc(char_u *p) {
while (*p != ' ' && *p != '\t' && *p != NUL) {
if (((*p == '\\') || (*p == Ctrl_V)) && (*(p + 1) != NUL)) {
++p;