summaryrefslogtreecommitdiffstats
path: root/src/proto/charset.pro
diff options
context:
space:
mode:
authorcero1988 <mirkoceroni@mirkoceroni.it>2023-02-16 15:03:12 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-16 15:03:12 +0000
commit1d87e11a1ef201b26ed87585fba70182ad0c468a (patch)
tree283b5f6b6856a18af08196375d4613a8303148d8 /src/proto/charset.pro
parentce3189d56e867a2ffc077893b62f530d5b09150f (diff)
patch 9.0.1314: :messages behavior depends on 'fileformat' of current bufferv9.0.1314
Problem: :messages behavior depends on 'fileformat' of current buffer. Solution: Pass the buffer pointer to where it is used. (Mirko Ceroni, closes #11995)
Diffstat (limited to 'src/proto/charset.pro')
-rw-r--r--src/proto/charset.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/charset.pro b/src/proto/charset.pro
index 0277483370..7e515be3b2 100644
--- a/src/proto/charset.pro
+++ b/src/proto/charset.pro
@@ -7,6 +7,7 @@ char_u *str_foldcase(char_u *str, int orglen, char_u *buf, int buflen);
char_u *transchar(int c);
char_u *transchar_buf(buf_T *buf, int c);
char_u *transchar_byte(int c);
+char_u *transchar_byte_buf(buf_T *buf, int c);
void transchar_nonprint(buf_T *buf, char_u *charbuf, int c);
void transchar_hex(char_u *buf, int c);
int byte2cells(int b);