emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/search.c


From: Ken Raeburn
Subject: [Emacs-diffs] Changes to emacs/src/search.c
Date: Tue, 16 Jul 2002 11:49:53 -0400

Index: emacs/src/search.c
diff -c emacs/src/search.c:1.165 emacs/src/search.c:1.166
*** emacs/src/search.c:1.165    Sun Jul 14 20:00:37 2002
--- emacs/src/search.c  Tue Jul 16 11:49:53 2002
***************
*** 1994,2000 ****
  
        if (SYNTAX (c) == Sword)
        {
!         bcopy (&SREF (string, i_byte_orig), o,
                 i_byte - i_byte_orig);
          o += i_byte - i_byte_orig;
        }
--- 1994,2000 ----
  
        if (SYNTAX (c) == Sword)
        {
!         bcopy (SDATA (string) + i_byte_orig, o,
                 i_byte - i_byte_orig);
          o += i_byte - i_byte_orig;
        }
***************
*** 2471,2477 ****
          else
            {
              /* Note that we don't have to increment POS.  */
!             c = SDATA (newtext)[pos_byte++];
              if (buf_multibyte)
                c = unibyte_char_to_multibyte (c);
            }
--- 2471,2477 ----
          else
            {
              /* Note that we don't have to increment POS.  */
!             c = SREF (newtext, pos_byte++);
              if (buf_multibyte)
                c = unibyte_char_to_multibyte (c);
            }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]