From bd4f53cc18ccffb2b171fa35ae62752812f9fb42 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 27 Jan 1998 04:22:43 +0000 Subject: [PATCH] (message_dolog): Cast M to unsigned char * to access bytes. --- src/xdisp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xdisp.c b/src/xdisp.c index 0c7ce90781f..399cd0ebae2 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -333,11 +333,12 @@ message_dolog (m, len, nlflag, multibyte) && ! NILP (current_buffer->enable_multibyte_characters)) { int i = 0; + unsigned char *msg = (unsigned char *) m; /* Convert a single-byte string to multibyte for the *Message* buffer. */ while (i < len) { - int c = unibyte_char_to_multibyte (m[i++]); + int c = unibyte_char_to_multibyte (msg[i++]); insert_char (c); } } -- 2.39.2