mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-05 11:21:04 -08:00
* chartab.c: Use similar style as for other recent patches.
This commit is contained in:
parent
f9a68bc5fc
commit
14f04e6b49
1 changed files with 1 additions and 2 deletions
|
|
@ -404,9 +404,8 @@ sub_char_table_set_range (Lisp_Object *table, int depth, int min_char, int from,
|
|||
to = max_char;
|
||||
i = CHARTAB_IDX (from, depth, min_char);
|
||||
j = CHARTAB_IDX (to, depth, min_char);
|
||||
j++;
|
||||
min_char += chartab_chars[depth] * i;
|
||||
for (; i < j; i++, min_char += chartab_chars[depth])
|
||||
for (j++; i < j; i++, min_char += chartab_chars[depth])
|
||||
sub_char_table_set_range (XSUB_CHAR_TABLE (*table)->contents + i,
|
||||
depth, min_char, from, to, val);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue