]> git.eshelyaron.com Git - emacs.git/commitdiff
(Faref, Faset): Allow indexing a char-table
authorRichard M. Stallman <rms@gnu.org>
Tue, 3 Feb 1998 06:22:02 +0000 (06:22 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 3 Feb 1998 06:22:02 +0000 (06:22 +0000)
directly by numbers up to CHAR_TABLE_ORDINARY_SLOTS.

src/data.c

index 4537e649b7fe61994e59aa240ae86de7a5700d90..ba7ed98b5279f36fa8875050f32f11929fc13b71 100644 (file)
@@ -1574,7 +1574,7 @@ or a byte-code object.  IDX starts at 0.")
 
       if (idxval < 0)
        args_out_of_range (array, idx);
-      if (idxval < CHAR_TABLE_SINGLE_BYTE_SLOTS)
+      if (idxval < CHAR_TABLE_ORDINARY_SLOTS)
        {
          /* For ASCII and 8-bit European characters, the element is
              stored in the top table.  */
@@ -1702,7 +1702,7 @@ IDX starts at 0.")
 
       if (idxval < 0)
        args_out_of_range (array, idx);
-      if (idxval < CHAR_TABLE_SINGLE_BYTE_SLOTS)
+      if (idxval < CHAR_TABLE_ORDINARY_SLOTS)
        XCHAR_TABLE (array)->contents[idxval] = newelt;
       else
        {