]> code.delx.au - gnu-emacs/blobdiff - src/casetab.c
Cleanup namespace of dos-w32.el.
[gnu-emacs] / src / casetab.c
index b6b1c99c39fb5a7084910d77a1ea4a6a65965aaf..e4907f5b628d4ecc28957ebaabb6a4650fb9f2f4 100644 (file)
@@ -205,7 +205,6 @@ set_identity (Lisp_Object table, Lisp_Object c, Lisp_Object elt)
        from = to = XINT (c);
 
       to++;
-      lint_assume (to <= MAX_CHAR + 1);
       for (; from < to; from++)
        CHAR_TABLE_SET (table, from, make_number (from));
     }
@@ -232,7 +231,6 @@ shuffle (Lisp_Object table, Lisp_Object c, Lisp_Object elt)
        from = to = XINT (c);
 
       to++;
-      lint_assume (to <= MAX_CHAR + 1);
       for (; from < to; from++)
        {
          Lisp_Object tem = Faref (table, elt);