* xdisp.c (string_from_display_spec): Don't use int for vector length.
This commit is contained in:
parent
1260aef1ae
commit
9f985e85e1
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* xdisp.c (string_from_display_spec): Don't use int for vector length.
|
||||
|
||||
* indent.c (Fvertical_motion): Fix == vs = typo.
|
||||
|
||||
2011-09-24 Eli Zaretskii <eliz@gnu.org>
|
||||
|
|
|
@ -1226,7 +1226,7 @@ string_from_display_spec (Lisp_Object spec)
|
|||
}
|
||||
else if (VECTORP (spec))
|
||||
{
|
||||
int i;
|
||||
ptrdiff_t i;
|
||||
|
||||
for (i = 0; i < ASIZE (spec); i++)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue