]> git.eshelyaron.com Git - emacs.git/commitdiff
(compose_chars_in_text): Treat Lisp string contents
authorKen Raeburn <raeburn@raeburn.org>
Fri, 19 Jul 2002 14:27:04 +0000 (14:27 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Fri, 19 Jul 2002 14:27:04 +0000 (14:27 +0000)
as const.

src/composite.c

index 1b40810a3aab0e8fd8487b94cb4890d035abf8bc..9fc58bc27b6c910ec1648338e8f1357c830bcf9a 100644 (file)
@@ -605,7 +605,7 @@ compose_chars_in_text (start, end, string)
   /* Set to nonzero if we don't have to compose ASCII characters.  */
   int skip_ascii;
   int i, len, stop, c;
-  unsigned char *ptr, *pend;
+  const unsigned char *ptr, *pend;
 
   if (! CHAR_TABLE_P (Vcomposition_function_table))
     return;