1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-04 11:00:45 -08:00

(make_sub_char_table): Remove noop-yet-incorrect statement.

This commit is contained in:
Stefan Monnier 2008-02-06 03:03:52 +00:00
parent 04b65d2b57
commit c62c8ddbb5
2 changed files with 4 additions and 1 deletions

View 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.

View 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;
}