emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Ken Raeburn
Subject: [Emacs-diffs] Changes to emacs/src/dispnew.c
Date: Fri, 19 Jul 2002 10:27:09 -0400

Index: emacs/src/dispnew.c
diff -c emacs/src/dispnew.c:1.310 emacs/src/dispnew.c:1.311
*** emacs/src/dispnew.c:1.310   Sun Jul 14 20:00:36 2002
--- emacs/src/dispnew.c Fri Jul 19 10:27:09 2002
***************
*** 440,446 ****
  
  void
  safe_bcopy (from, to, size)
!      char *from, *to;
       int size;
  {
    if (size <= 0 || from == to)
--- 440,447 ----
  
  void
  safe_bcopy (from, to, size)
!      const char *from;
!      char *to;
       int size;
  {
    if (size <= 0 || from == to)
***************
*** 455,461 ****
    /* Otherwise, we'll copy from the end.  */
    else
      {
!       register char *endf = from + size;
        register char *endt = to + size;
  
        /* If TO - FROM is large, then we should break the copy into
--- 456,462 ----
    /* Otherwise, we'll copy from the end.  */
    else
      {
!       register const char *endf = from + size;
        register char *endt = to + size;
  
        /* If TO - FROM is large, then we should break the copy into



reply via email to

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