diff options
| author | Richard M. Stallman | 1995-10-03 15:11:56 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-10-03 15:11:56 +0000 |
| commit | 371f8cd0cef48c572ffacc2e1814d443560e79d1 (patch) | |
| tree | 9d0941030cbe7f6b45a09e98cb114224ee09241d | |
| parent | 6526ab49f0ca100f0166f42a6d288366820dc575 (diff) | |
| download | emacs-371f8cd0cef48c572ffacc2e1814d443560e79d1.tar.gz emacs-371f8cd0cef48c572ffacc2e1814d443560e79d1.zip | |
Fix name of buffer-substring-no-properties.
| -rw-r--r-- | lispref/text.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/text.texi b/lispref/text.texi index 176edf1f74d..08723e5bc84 100644 --- a/lispref/text.texi +++ b/lispref/text.texi | |||
| @@ -182,7 +182,7 @@ This is the contents of buffer foo | |||
| 182 | @end example | 182 | @end example |
| 183 | @end defun | 183 | @end defun |
| 184 | 184 | ||
| 185 | @defun buffer-substring-without-properties start end | 185 | @defun buffer-substring-no-properties start end |
| 186 | This is like @code{buffer-substring}, except that it does not copy text | 186 | This is like @code{buffer-substring}, except that it does not copy text |
| 187 | properties, just the characters themselves. @xref{Text Properties}. | 187 | properties, just the characters themselves. @xref{Text Properties}. |
| 188 | Here's an example of using this function to get a word to look up in an | 188 | Here's an example of using this function to get a word to look up in an |
| @@ -2233,7 +2233,7 @@ from the specified range of text. Here's an example: | |||
| 2233 | @end example | 2233 | @end example |
| 2234 | @end defun | 2234 | @end defun |
| 2235 | 2235 | ||
| 2236 | See also the function @code{buffer-substring-without-properties} | 2236 | See also the function @code{buffer-substring-no-properties} |
| 2237 | (@pxref{Buffer Contents}) which copies text from the buffer | 2237 | (@pxref{Buffer Contents}) which copies text from the buffer |
| 2238 | but does not copy its properties. | 2238 | but does not copy its properties. |
| 2239 | 2239 | ||