emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Andreas Schwab
Subject: [Emacs-diffs] Changes to emacs/src/data.c
Date: Fri, 07 Dec 2001 07:15:21 -0500

Index: emacs/src/data.c
diff -c emacs/src/data.c:1.207 emacs/src/data.c:1.208
*** emacs/src/data.c:1.207      Fri Nov 16 13:19:58 2001
--- emacs/src/data.c    Fri Dec  7 07:15:21 2001
***************
*** 96,102 ****
  
  static Lisp_Object swap_in_symval_forwarding P_ ((Lisp_Object, Lisp_Object));
  
! int most_positive_fixnum, most_negative_fixnum;
  
  
  void
--- 96,102 ----
  
  static Lisp_Object swap_in_symval_forwarding P_ ((Lisp_Object, Lisp_Object));
  
! Lisp_Object Vmost_positive_fixnum, Vmost_negative_fixnum;
  
  
  void
***************
*** 3208,3220 ****
  
    XSYMBOL (Qwholenump)->function = XSYMBOL (Qnatnump)->function;
  
!   DEFVAR_INT ("most-positive-fixnum", &most_positive_fixnum,
!             doc: /* The largest value that is representable in a Lisp 
integer.  */);
!   most_positive_fixnum = MOST_POSITIVE_FIXNUM;
    
!   DEFVAR_INT ("most-negative-fixnum", &most_negative_fixnum,
!             doc: /* The smallest value that is representable in a Lisp 
integer.  */);
!   most_negative_fixnum = MOST_NEGATIVE_FIXNUM;
  }
  
  SIGTYPE
--- 3208,3220 ----
  
    XSYMBOL (Qwholenump)->function = XSYMBOL (Qnatnump)->function;
  
!   DEFVAR_LISP ("most-positive-fixnum", &Vmost_positive_fixnum,
!              doc: /* The largest value that is representable in a Lisp 
integer.  */);
!   Vmost_positive_fixnum = make_number (MOST_POSITIVE_FIXNUM);
    
!   DEFVAR_LISP ("most-negative-fixnum", &Vmost_negative_fixnum,
!              doc: /* The smallest value that is representable in a Lisp 
integer.  */);
!   Vmost_negative_fixnum = make_number (MOST_NEGATIVE_FIXNUM);
  }
  
  SIGTYPE



reply via email to

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