emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/lread.c [lexbind]
Date: Wed, 08 Dec 2004 19:01:41 -0500

Index: emacs/src/lread.c
diff -c emacs/src/lread.c:1.288.2.7 emacs/src/lread.c:1.288.2.8
*** emacs/src/lread.c:1.288.2.7 Fri Nov 12 04:21:14 2004
--- emacs/src/lread.c   Wed Dec  8 23:36:22 2004
***************
*** 1,6 ****
  /* Lisp parsing and input streams.
!    Copyright (C) 1985,86,87,88,89,93,94,95,97,98,99,2000,01,03,2004
!       Free Software Foundation, Inc.
  
  This file is part of GNU Emacs.
  
--- 1,6 ----
  /* Lisp parsing and input streams.
!    Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, 1997, 1998,
!      1999, 2000, 2001, 2003, 2004  Free Software Foundation, Inc.
  
  This file is part of GNU Emacs.
  
***************
*** 327,332 ****
--- 327,333 ----
        /* Interrupted reads have been observed while reading over the network 
*/
        while (c == EOF && ferror (instream) && errno == EINTR)
        {
+         QUIT;
          clearerr (instream);
          c = getc (instream);
        }
***************
*** 3433,3439 ****
    hash %= obsize;
    bucket = XVECTOR (obarray)->contents[hash];
    oblookup_last_bucket_number = hash;
!   if (XFASTINT (bucket) == 0)
      ;
    else if (!SYMBOLP (bucket))
      error ("Bad data in guts of obarray"); /* Like CADR error message */
--- 3434,3440 ----
    hash %= obsize;
    bucket = XVECTOR (obarray)->contents[hash];
    oblookup_last_bucket_number = hash;
!   if (EQ (bucket, make_number (0)))
      ;
    else if (!SYMBOLP (bucket))
      error ("Bad data in guts of obarray"); /* Like CADR error message */




reply via email to

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