mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
Prefer singed type to size_t in Fdefine_charset_internal
* src/charset.c (Fdefine_charset_internal): Prefer int to size_t for a variable that has only int values.
This commit is contained in:
parent
56ae704e5b
commit
f5c3ddd9ad
1 changed files with 1 additions and 1 deletions
|
|
@ -1139,7 +1139,7 @@ usage: (define-charset-internal ...) */)
|
|||
charset_table.start = new_table;
|
||||
charset_table.size = new_size;
|
||||
Lisp_Object new_attr_table = make_vector (new_size, Qnil);
|
||||
for (size_t i = 0; i < old_size; i++)
|
||||
for (int i = 0; i < old_size; i++)
|
||||
ASET (new_attr_table, i,
|
||||
AREF (charset_table.attributes_table, i));
|
||||
charset_table.attributes_table = new_attr_table;
|
||||
|
|
|
|||
Loading…
Reference in a new issue