Mercurial > hg > xemacs-beta
diff src/callint.c @ 970:0dc7756a58c4
[xemacs-hg @ 2002-08-22 11:31:39 by stephent]
fix GCPRO in do_autoload <871y8rnndk.fsf@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Thu, 22 Aug 2002 11:31:43 +0000 |
parents | 79c6ff3eef26 |
children | e22b0213b713 |
line wrap: on
line diff
--- a/src/callint.c Thu Aug 22 11:19:58 2002 +0000 +++ b/src/callint.c Thu Aug 22 11:31:43 2002 +0000 @@ -369,8 +369,9 @@ if (EQ (funcar, Qautoload)) { - struct gcpro gcpro1, gcpro2; - GCPRO2 (function, prefix); + struct gcpro gcpro1; + GCPRO1 (prefix); + /* do_autoload GCPROs both arguments */ do_autoload (fun, function); UNGCPRO; goto retry;