]> git.eshelyaron.com Git - emacs.git/commitdiff
(make_sub_char_table): Remove noop-yet-incorrect statement.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 6 Feb 2008 03:03:52 +0000 (03:03 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 6 Feb 2008 03:03:52 +0000 (03:03 +0000)
src/ChangeLog
src/chartab.c

index a322a3ad73559252deaa06fe35dfd3f203a3557d..586bf4a11714e54edcee74baa8703d9e4486fbf8 100644 (file)
@@ -1,3 +1,7 @@
+2008-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
+
 2008-02-05  Jason Rumney  <jasonr@gnu.org>
 
        * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
index 5dddd27f612df28fb7c5d18adf925bd3022707dd..f7a3c2ccbf5b669e7d8fcc9f86e40af51de5ce42 100644 (file)
@@ -104,7 +104,6 @@ make_sub_char_table (depth, min_char, defalt)
   XSETPVECTYPE (XVECTOR (table), PVEC_SUB_CHAR_TABLE);
   XSUB_CHAR_TABLE (table)->depth = make_number (depth);
   XSUB_CHAR_TABLE (table)->min_char = make_number (min_char);
-  XSETSUB_CHAR_TABLE (table, XSUB_CHAR_TABLE (table));
 
   return table;
 }