]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fload): Use EMACS_INT.
authorRichard M. Stallman <rms@gnu.org>
Sat, 17 Sep 1994 00:36:43 +0000 (00:36 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 17 Sep 1994 00:36:43 +0000 (00:36 +0000)
src/lread.c

index e703337edc724d7ad9674d36c8fd8b9ae949f9e4..9afeec0192ea104740a50b78ccd8097dfb20e356 100644 (file)
@@ -434,7 +434,7 @@ Return t if file exists.")
      So malloc a full-size pointer, and record the address of that pointer.  */
   ptr = (FILE **) xmalloc (sizeof (FILE *));
   *ptr = stream;
-  XSET (lispstream, Lisp_Internal_Stream, (int) ptr);
+  XSET (lispstream, Lisp_Internal_Stream, (EMACS_INT) ptr);
   record_unwind_protect (load_unwind, lispstream);
   record_unwind_protect (load_descriptor_unwind, load_descriptor_list);
   load_descriptor_list
@@ -1616,7 +1616,8 @@ oblookup (obarray, ptr, size)
      register char *ptr;
      register int size;
 {
-  int hash, obsize;
+  int hash;
+  int obsize;
   register Lisp_Object tail;
   Lisp_Object bucket, tem;