home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: gnu.emacs.bug
- Path: sparky!uunet!convex!darwin.sura.net!zaphod.mps.ohio-state.edu!cis.ohio-state.edu!totoro.cs.oberlin.edu!jimb
- From: jimb@totoro.cs.oberlin.edu (Jim Blandy)
- Subject: Try this: (funcall '(autoload "file" nil nil nil))
- Message-ID: <9211150725.AA04232@totoro.cs.oberlin.edu>
- Sender: gnulists@ai.mit.edu
- Organization: GNUs Not Usenet
- References: <9211121359.AA29883@namu01.gwdg.de>
- Distribution: gnu
- Date: Sat, 14 Nov 1992 21:25:09 GMT
- Approved: bug-gnu-emacs@prep.ai.mit.edu
- Lines: 21
-
- > Try this: (funcall '(autoload "files" nil nil nil))
- >
- > I always get sth like: Fatal error (11).Memory fault(coredump)
- >
- >The same on Motorola Delta emacs 18.58
-
- A patch:
-
- *** eval.c.~1~ Thu Nov 14 18:01:42 1991
- --- eval.c Sun Nov 15 02:11:51 1992
- *************** do_autoload (fundef, funname)
- *** 1245,1250 ****
- --- 1245,1251 ----
- int count = specpdl_ptr - specpdl;
- Lisp_Object fun, val;
-
- + CHECK_SYMBOL (funname, 1);
- fun = funname;
-
- /* Value saved here is to be restored into Vautoload_queue */
-
-