text is included in the file. \\[widen] makes all visible again.
See also `save-restriction'.
- When calling from a program, pass two arguments; positions (integers
- or markers) bounding the text that should remain visible. */)
+ When calling from Lisp, pass two arguments START and END:
+ positions (integers or markers) bounding the text that should
+ remain visible. */)
(register Lisp_Object start, Lisp_Object end)
{
- CHECK_NUMBER_COERCE_MARKER (start);
- CHECK_NUMBER_COERCE_MARKER (end);
+ CHECK_FIXNUM_COERCE_MARKER (start);
+ CHECK_FIXNUM_COERCE_MARKER (end);
- if (XINT (start) > XINT (end))
+ if (XFIXNUM (start) > XFIXNUM (end))
{
Lisp_Object tem;
tem = start; start = end; end = tem;