summaryrefslogtreecommitdiffstats
path: root/src/charset.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-10-16 17:51:40 +0100
committerBram Moolenaar <Bram@vim.org>2021-10-16 17:51:40 +0100
commit93ff6720fe4427341bc426b6d46e6324f226c270 (patch)
tree59206daf1e304747723c5e4fcc8cabd16b3c310e /src/charset.c
parentabdcfd1c837e244065d4fe04c7a78abae5af3f7e (diff)
patch 8.2.3522: cannot use \x and \u when setting 'listchars'v8.2.3522
Problem: Cannot use \x and \u when setting 'listchars'. Solution: Support hex and unicode in hex form. (closes #9006)
Diffstat (limited to 'src/charset.c')
-rw-r--r--src/charset.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/charset.c b/src/charset.c
index fcaeedf757..2c46f7ad04 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -2013,8 +2013,6 @@ hex2nr(int c)
return c - '0';
}
-#if defined(FEAT_TERMRESPONSE) || defined(FEAT_GUI_GTK) \
- || defined(PROTO) || defined(FEAT_AUTOSHELLDIR)
/*
* Convert two hex characters to a byte.
* Return -1 if one of the characters is not hex.
@@ -2026,7 +2024,6 @@ hexhex2nr(char_u *p)
return -1;
return (hex2nr(p[0]) << 4) + hex2nr(p[1]);
}
-#endif
/*
* Return TRUE if "str" starts with a backslash that should be removed.