# HG changeset patch # User Stefan Monnier # Date 1202267032 0 # Node ID cff1e89ad92acda8f04d6a9fc1fb6724df39e4ce # Parent 7e1dcd3ed3ab4febf877737d33b0abffa9e0c5de (make_sub_char_table): Remove noop-yet-incorrect statement. diff -r 7e1dcd3ed3ab -r cff1e89ad92a src/ChangeLog --- a/src/ChangeLog Tue Feb 05 21:51:14 2008 +0000 +++ b/src/ChangeLog Wed Feb 06 03:03:52 2008 +0000 @@ -1,3 +1,7 @@ +2008-02-06 Stefan Monnier + + * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement. + 2008-02-05 Jason Rumney * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth. diff -r 7e1dcd3ed3ab -r cff1e89ad92a src/chartab.c --- a/src/chartab.c Tue Feb 05 21:51:14 2008 +0000 +++ b/src/chartab.c Wed Feb 06 03:03:52 2008 +0000 @@ -104,7 +104,6 @@ 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; }