]> git.eshelyaron.com Git - emacs.git/commitdiff
Be consistent about list length fixnum overflow
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 1 Jan 2019 19:41:16 +0000 (11:41 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 1 Jan 2019 19:43:17 +0000 (11:43 -0800)
* src/fns.c (Flength, Fproper_list_p): Use overflow_error to
report the (typically impossible) fixnum overflow.

src/fns.c

index e40eb2e54a4f1c2012be1ddbdbc3c3794b095345..7791310a31322e6f195eb98ccfe132970de7ed82 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -118,7 +118,7 @@ To get the number of bytes, use `string-bytes'.  */)
        i++;
       CHECK_LIST_END (sequence, sequence);
       if (MOST_POSITIVE_FIXNUM < i)
-       error ("List too long");
+       overflow_error ();
       val = make_fixnum (i);
     }
   else if (NILP (sequence))
@@ -161,7 +161,7 @@ A proper list is neither circular nor dotted (i.e., its last cdr is nil).  */
   if (!NILP (last_tail))
     return Qnil;
   if (MOST_POSITIVE_FIXNUM < len)
-    xsignal0 (Qoverflow_error);
+    overflow_error ();
   return make_fixnum (len);
 }