1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

* src/editfns.c (Fnarrow_to_region): Doc fix. (Bug#35163)

This commit is contained in:
Eli Zaretskii 2019-04-08 19:53:48 +03:00
parent 646d33dbbc
commit a5da653319

View File

@ -3840,8 +3840,9 @@ but is not deleted; if you save the buffer in a file, the invisible
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);