diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/chartab.c | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a322a3ad735..586bf4a1171 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement. | ||
| 4 | |||
| 1 | 2008-02-05 Jason Rumney <jasonr@gnu.org> | 5 | 2008-02-05 Jason Rumney <jasonr@gnu.org> |
| 2 | 6 | ||
| 3 | * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth. | 7 | * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth. |
diff --git a/src/chartab.c b/src/chartab.c index 5dddd27f612..f7a3c2ccbf5 100644 --- a/src/chartab.c +++ b/src/chartab.c | |||
| @@ -104,7 +104,6 @@ make_sub_char_table (depth, min_char, defalt) | |||
| 104 | XSETPVECTYPE (XVECTOR (table), PVEC_SUB_CHAR_TABLE); | 104 | XSETPVECTYPE (XVECTOR (table), PVEC_SUB_CHAR_TABLE); |
| 105 | XSUB_CHAR_TABLE (table)->depth = make_number (depth); | 105 | XSUB_CHAR_TABLE (table)->depth = make_number (depth); |
| 106 | XSUB_CHAR_TABLE (table)->min_char = make_number (min_char); | 106 | XSUB_CHAR_TABLE (table)->min_char = make_number (min_char); |
| 107 | XSETSUB_CHAR_TABLE (table, XSUB_CHAR_TABLE (table)); | ||
| 108 | 107 | ||
| 109 | return table; | 108 | return table; |
| 110 | } | 109 | } |