# HG changeset patch # User Richard M. Stallman # Date 885420125 0 # Node ID 10eb136ca94b7dba8130cb92e91f047479100db0 # Parent f465da76f36b40272d7d91afe7e3a69d2be6e0ff (skip_chars): Use unibyte_char_to_multibyte, diff -r f465da76f36b -r 10eb136ca94b src/syntax.c --- a/src/syntax.c Wed Jan 21 22:00:26 1998 +0000 +++ b/src/syntax.c Wed Jan 21 22:02:05 1998 +0000 @@ -1,5 +1,5 @@ /* GNU Emacs routines to deal with syntax tables; also word and list parsing. - Copyright (C) 1985, 87, 93, 94, 95, 1997 Free Software Foundation, Inc. + Copyright (C) 1985, 87, 93, 94, 95, 97, 1998 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -1260,10 +1260,7 @@ /* Convert multibyteness between what the string has and what the buffer has. */ if (multibyte) - { - if (c >= 0200 && c < 0400) - c += nonascii_insert_offset; - } + c = unibyte_char_to_multibyte (c); else c &= 0377;