aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2019-04-08 19:53:48 +0300
committerEli Zaretskii2019-04-08 19:53:48 +0300
commita5da653319a3018074debfc7b4fdd90ac7ea838c (patch)
tree80c69b943b28bdbeb2115203bbc0df28bba7eeba /src
parent646d33dbbced04b3454fa5f726309dd96cd089c7 (diff)
downloademacs-a5da653319a3018074debfc7b4fdd90ac7ea838c.tar.gz
emacs-a5da653319a3018074debfc7b4fdd90ac7ea838c.zip
* src/editfns.c (Fnarrow_to_region): Doc fix. (Bug#35163)
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c
index f5edbb71d2e..9b76ae23ffd 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -3840,8 +3840,9 @@ but is not deleted; if you save the buffer in a file, the invisible
3840text is included in the file. \\[widen] makes all visible again. 3840text is included in the file. \\[widen] makes all visible again.
3841See also `save-restriction'. 3841See also `save-restriction'.
3842 3842
3843When calling from a program, pass two arguments; positions (integers 3843When calling from Lisp, pass two arguments START and END:
3844or markers) bounding the text that should remain visible. */) 3844positions (integers or markers) bounding the text that should
3845remain visible. */)
3845 (register Lisp_Object start, Lisp_Object end) 3846 (register Lisp_Object start, Lisp_Object end)
3846{ 3847{
3847 CHECK_NUMBER_COERCE_MARKER (start); 3848 CHECK_NUMBER_COERCE_MARKER (start);