comparison src/editfns.c @ 66379:48a5d83a7c9d

(Fcompare_buffer_substrings): Fix last change.
author Kim F. Storm <storm@cua.dk>
date Mon, 24 Oct 2005 08:35:50 +0000
parents a80af18dfc7e
children 8392b2926dd8
comparison
equal deleted inserted replaced
66378:bfedfa64c50b 66379:48a5d83a7c9d
2472 { 2472 {
2473 register int begp1, endp1, begp2, endp2, temp; 2473 register int begp1, endp1, begp2, endp2, temp;
2474 register struct buffer *bp1, *bp2; 2474 register struct buffer *bp1, *bp2;
2475 register Lisp_Object trt 2475 register Lisp_Object trt
2476 = (!NILP (current_buffer->case_fold_search) 2476 = (!NILP (current_buffer->case_fold_search)
2477 ? XCHAR_TABLE (current_buffer->case_canon_table) : Qnil); 2477 ? current_buffer->case_canon_table : Qnil);
2478 int chars = 0; 2478 int chars = 0;
2479 int i1, i2, i1_byte, i2_byte; 2479 int i1, i2, i1_byte, i2_byte;
2480 2480
2481 /* Find the first buffer and its substring. */ 2481 /* Find the first buffer and its substring. */
2482 2482