comparison src/coding.c @ 46462:c6bb99a483e0

(Ffind_coding_systems_region_interval): Use const for pointer to lisp string data.
author Ken Raeburn <raeburn@raeburn.org>
date Tue, 16 Jul 2002 19:48:04 +0000
parents 40db0673e6f0
children cb1914307488
comparison
equal deleted inserted replaced
46461:7d3969ae9291 46462:c6bb99a483e0
6412 Lisp_Object start, end; 6412 Lisp_Object start, end;
6413 { 6413 {
6414 Lisp_Object work_table, safe_codings; 6414 Lisp_Object work_table, safe_codings;
6415 int non_ascii_p = 0; 6415 int non_ascii_p = 0;
6416 int single_byte_char_found = 0; 6416 int single_byte_char_found = 0;
6417 unsigned char *p1, *p1end, *p2, *p2end, *p; 6417 const unsigned char *p1, *p1end, *p2, *p2end, *p;
6418 6418
6419 if (STRINGP (start)) 6419 if (STRINGP (start))
6420 { 6420 {
6421 if (!STRING_MULTIBYTE (start)) 6421 if (!STRING_MULTIBYTE (start))
6422 return Qt; 6422 return Qt;