emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Ken Raeburn
Subject: [Emacs-diffs] Changes to emacs/src/eval.c
Date: Mon, 20 May 2002 04:05:38 -0400

Index: emacs/src/eval.c
diff -c emacs/src/eval.c:1.187 emacs/src/eval.c:1.188
*** emacs/src/eval.c:1.187      Wed May 15 12:36:13 2002
--- emacs/src/eval.c    Mon May 20 04:05:37 2002
***************
*** 1910,1916 ****
       of what files are preloaded and when.  */
    if (! NILP (Vpurify_flag))
      error ("Attempt to autoload %s while preparing to dump",
!          XSYMBOL (funname)->name->data);
  
    fun = funname;
    CHECK_SYMBOL (funname);
--- 1910,1916 ----
       of what files are preloaded and when.  */
    if (! NILP (Vpurify_flag))
      error ("Attempt to autoload %s while preparing to dump",
!          XSTRING (SYMBOL_NAME (funname))->data);
  
    fun = funname;
    CHECK_SYMBOL (funname);
***************
*** 1949,1955 ****
  
    if (!NILP (Fequal (fun, fundef)))
      error ("Autoloading failed to define function %s",
!          XSYMBOL (funname)->name->data);
    UNGCPRO;
  }
  
--- 1949,1955 ----
  
    if (!NILP (Fequal (fun, fundef)))
      error ("Autoloading failed to define function %s",
!          XSTRING (SYMBOL_NAME (funname))->data);
    UNGCPRO;
  }
  



reply via email to

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