Mercurial > emacs
changeset 14391:dfdf939f3e8c
(Fcompare_buffer_substrings): Access case_canon_table as a char_table.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 27 Jan 1996 08:28:51 +0000 |
parents | d16ba81e278a |
children | 127c6142a07a |
files | src/editfns.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/editfns.c Sat Jan 27 08:22:36 1996 +0000 +++ b/src/editfns.c Sat Jan 27 08:28:51 1996 +0000 @@ -1332,9 +1332,9 @@ { register int begp1, endp1, begp2, endp2, temp, len1, len2, length, i; register struct buffer *bp1, *bp2; - register unsigned char *trt + register Lisp_Object *trt = (!NILP (current_buffer->case_fold_search) - ? XSTRING (current_buffer->case_canon_table)->data : 0); + ? XCHAR_TABLE (current_buffer->case_canon_table)->contents : 0); /* Find the first buffer and its substring. */