summaryrefslogtreecommitdiff
path: root/src/composite.c
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@raeburn.org>2002-07-19 14:27:04 +0000
committerKen Raeburn <raeburn@raeburn.org>2002-07-19 14:27:04 +0000
commitc6fac61f1cb5fcc8e6b76f07126fe7f8f1cf6a67 (patch)
tree8ccbe8832324196fffaf1d5b95d6c16661419ea0 /src/composite.c
parentf14049eb75c58c9b5ec6c92c0e70a46a03af4aac (diff)
downloademacs-c6fac61f1cb5fcc8e6b76f07126fe7f8f1cf6a67.tar.gz
(compose_chars_in_text): Treat Lisp string contents
as const.
Diffstat (limited to 'src/composite.c')
-rw-r--r--src/composite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/composite.c b/src/composite.c
index 1b40810a3aa..9fc58bc27b6 100644
--- a/src/composite.c
+++ b/src/composite.c
@@ -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;