emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/doc.c
Date: Wed, 03 Apr 2002 13:05:08 -0500

Index: emacs/src/doc.c
diff -c emacs/src/doc.c:1.95 emacs/src/doc.c:1.96
*** emacs/src/doc.c:1.95        Wed Apr  3 11:46:47 2002
--- emacs/src/doc.c     Wed Apr  3 13:05:07 2002
***************
*** 441,448 ****
  
    /* If DOC is 0, it's typically because of a dumped file missing
       from the DOC file (bug in src/Makefile.in).  */
!   if (EQ (tem, make_number (0)))
!       tem = Qnil;
    if (INTEGERP (doc) || CONSP (doc))
      {
        Lisp_Object tem;
--- 441,448 ----
  
    /* If DOC is 0, it's typically because of a dumped file missing
       from the DOC file (bug in src/Makefile.in).  */
!   if (EQ (doc, make_number (0)))
!     doc = Qnil;
    if (INTEGERP (doc) || CONSP (doc))
      {
        Lisp_Object tem;
***************
*** 488,494 ****
    
    tem = Fget (symbol, prop);
    if (EQ (tem, make_number (0)))
!       tem = Qnil;
    if (INTEGERP (tem) || (CONSP (tem) && INTEGERP (XCDR (tem))))
      {
        Lisp_Object doc = tem;
--- 488,494 ----
    
    tem = Fget (symbol, prop);
    if (EQ (tem, make_number (0)))
!     tem = Qnil;
    if (INTEGERP (tem) || (CONSP (tem) && INTEGERP (XCDR (tem))))
      {
        Lisp_Object doc = tem;



reply via email to

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