From: Ken Raeburn Date: Tue, 16 Jul 2002 19:48:37 +0000 (+0000) Subject: (Fdescribe_buffer_bindings): Use const for pointer to X-Git-Tag: ttn-vms-21-2-B4~14048 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3141e0abe1cd85f91dfaccbf616e92c5e4165135;p=emacs.git (Fdescribe_buffer_bindings): Use const for pointer to lisp string data. --- diff --git a/src/keymap.c b/src/keymap.c index 21c3bbdc232..6e5eec90eef 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -2659,7 +2659,7 @@ You type Translation\n\ if (STRINGP (Vkeyboard_translate_table) && !NILP (prefix)) { int c; - unsigned char *translate = SDATA (Vkeyboard_translate_table); + const unsigned char *translate = SDATA (Vkeyboard_translate_table); int translate_len = SCHARS (Vkeyboard_translate_table); for (c = 0; c < translate_len; c++)