(coded-charset-entity-reference-alist): Add setting for
[chise/xemacs-chise.git.1] / src / callint.c
index faa910d..fa89f16 100644 (file)
@@ -37,7 +37,7 @@ Boston, MA 02111-1307, USA.  */
 #include "insdel.h"
 #include "window.h"
 
-extern int num_input_chars;
+extern Charcount num_input_chars;
 
 Lisp_Object Vcurrent_prefix_arg;
 Lisp_Object Qcall_interactively;
@@ -307,8 +307,9 @@ when reading the arguments.
 
       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;