diff options
| author | Gerd Moellmann | 2001-01-19 10:12:44 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-01-19 10:12:44 +0000 |
| commit | ba976213c358271b653ae2a8fec9d09c6692a7fd (patch) | |
| tree | e8b968b56f9ac18e19470c314e5593f297745837 /src/editfns.c | |
| parent | 0a94981197106cf077094df3eba4b765392f2b56 (diff) | |
| download | emacs-ba976213c358271b653ae2a8fec9d09c6692a7fd.tar.gz emacs-ba976213c358271b653ae2a8fec9d09c6692a7fd.zip | |
(Fbuffer_substring): Doc fix.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index aea1567c760..c431be1161a 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2192,7 +2192,11 @@ DEFUN ("buffer-substring", Fbuffer_substring, Sbuffer_substring, 2, 2, 0, | |||
| 2192 | "Return the contents of part of the current buffer as a string.\n\ | 2192 | "Return the contents of part of the current buffer as a string.\n\ |
| 2193 | The two arguments START and END are character positions;\n\ | 2193 | The two arguments START and END are character positions;\n\ |
| 2194 | they can be in either order.\n\ | 2194 | they can be in either order.\n\ |
| 2195 | The string returned is multibyte if the buffer is multibyte.") | 2195 | The string returned is multibyte if the buffer is multibyte.\n\ |
| 2196 | \n\ | ||
| 2197 | This function copies the text properties of that part of the buffer\n\ | ||
| 2198 | into the result string; if you don't want the text properties,\n\ | ||
| 2199 | use `buffer-substring-no-properties' instead.") | ||
| 2196 | (start, end) | 2200 | (start, end) |
| 2197 | Lisp_Object start, end; | 2201 | Lisp_Object start, end; |
| 2198 | { | 2202 | { |