diff options
author | Ken Raeburn <raeburn@raeburn.org> | 2002-07-16 19:48:04 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@raeburn.org> | 2002-07-16 19:48:04 +0000 |
commit | a90f2c3549a5173e59755ac834c4f85505b3fcc8 (patch) | |
tree | e1df5c7d6df0dc213e60bc81776d4e586418884a /src/coding.c | |
parent | 8a25217a49fb5815daf35034860998215a617066 (diff) | |
download | emacs-a90f2c3549a5173e59755ac834c4f85505b3fcc8.tar.gz emacs-a90f2c3549a5173e59755ac834c4f85505b3fcc8.tar.bz2 emacs-a90f2c3549a5173e59755ac834c4f85505b3fcc8.zip |
(Ffind_coding_systems_region_interval): Use const for
pointer to lisp string data.
Diffstat (limited to 'src/coding.c')
-rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index 0afe0b3ac42..23ccfbce390 100644 --- a/src/coding.c +++ b/src/coding.c @@ -6414,7 +6414,7 @@ DEFUN ("find-coding-systems-region-internal", Lisp_Object work_table, safe_codings; int non_ascii_p = 0; int single_byte_char_found = 0; - unsigned char *p1, *p1end, *p2, *p2end, *p; + const unsigned char *p1, *p1end, *p2, *p2end, *p; if (STRINGP (start)) { |