* editfns.c (region_limit): Fix type mismatch.
This commit is contained in:
parent
ef884f239f
commit
3e984ee810
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
|
||||
|
||||
* editfns.c (region_limit): Fix type mismatch.
|
||||
|
||||
2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
|
||||
|
||||
* nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
|
||||
|
|
|
@ -287,7 +287,7 @@ region_limit (int beginningp)
|
|||
else
|
||||
{ /* Clip to the current narrowing (bug#11770). */
|
||||
ptrdiff_t mark = XFASTINT (m);
|
||||
return make_number (mark < BEGV ? BEGV : mark > ZV ? ZV : m);
|
||||
return make_number (mark < BEGV ? BEGV : mark > ZV ? ZV : mark);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue