diff options
| author | Eli Zaretskii | 2019-04-08 19:53:48 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-04-08 19:53:48 +0300 |
| commit | a5da653319a3018074debfc7b4fdd90ac7ea838c (patch) | |
| tree | 80c69b943b28bdbeb2115203bbc0df28bba7eeba /src | |
| parent | 646d33dbbced04b3454fa5f726309dd96cd089c7 (diff) | |
| download | emacs-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.c | 5 |
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 | |||
| 3840 | text is included in the file. \\[widen] makes all visible again. | 3840 | text is included in the file. \\[widen] makes all visible again. |
| 3841 | See also `save-restriction'. | 3841 | See also `save-restriction'. |
| 3842 | 3842 | ||
| 3843 | When calling from a program, pass two arguments; positions (integers | 3843 | When calling from Lisp, pass two arguments START and END: |
| 3844 | or markers) bounding the text that should remain visible. */) | 3844 | positions (integers or markers) bounding the text that should |
| 3845 | remain 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); |