From: Kim F. Storm Date: Mon, 24 Oct 2005 08:35:50 +0000 (+0000) Subject: (Fcompare_buffer_substrings): Fix last change. X-Git-Tag: emacs-pretest-22.0.90~6346 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=60758816f2f1ace36154b8b2b849db0d8e7fffe8;p=emacs.git (Fcompare_buffer_substrings): Fix last change. --- diff --git a/src/editfns.c b/src/editfns.c index 4471e4553da..e7b152726e3 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -2474,7 +2474,7 @@ determines whether case is significant or ignored. */) register struct buffer *bp1, *bp2; register Lisp_Object trt = (!NILP (current_buffer->case_fold_search) - ? XCHAR_TABLE (current_buffer->case_canon_table) : Qnil); + ? current_buffer->case_canon_table : Qnil); int chars = 0; int i1, i2, i1_byte, i2_byte;