home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / gnu / emacs / bug / 1488 next >
Encoding:
Text File  |  1992-11-15  |  1.0 KB  |  35 lines

  1. Newsgroups: gnu.emacs.bug
  2. Path: sparky!uunet!convex!darwin.sura.net!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!totoro.cs.oberlin.edu!jimb
  3. From: jimb@totoro.cs.oberlin.edu (Jim Blandy)
  4. Subject: Try this: (funcall '(autoload "file" nil nil nil))
  5. Message-ID: <9211150725.AA04232@totoro.cs.oberlin.edu>
  6. Sender: gnulists@ai.mit.edu
  7. Organization: GNUs Not Usenet
  8. References: <9211121359.AA29883@namu01.gwdg.de> 
  9. Distribution: gnu
  10. Date: Sat, 14 Nov 1992 21:25:09 GMT
  11. Approved: bug-gnu-emacs@prep.ai.mit.edu
  12. Lines: 21
  13.  
  14. >   Try this: (funcall '(autoload "files" nil nil nil))
  15. >
  16. >   I always get sth like: Fatal error (11).Memory fault(coredump)
  17. >
  18. >The same on Motorola Delta emacs 18.58
  19.  
  20. A patch:
  21.  
  22. *** eval.c.~1~  Thu Nov 14 18:01:42 1991
  23. --- eval.c      Sun Nov 15 02:11:51 1992
  24. *************** do_autoload (fundef, funname)
  25. *** 1245,1250 ****
  26. --- 1245,1251 ----
  27.     int count = specpdl_ptr - specpdl;
  28.     Lisp_Object fun, val;
  29.   
  30. +   CHECK_SYMBOL (funname, 1);
  31.     fun = funname;
  32.   
  33.     /* Value saved here is to be restored into Vautoload_queue */
  34.  
  35.