diff options
| author | Juanma Barranquero | 2005-05-31 09:32:35 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-05-31 09:32:35 +0000 |
| commit | 2cd16d74388dc0980422656d215648de83324a94 (patch) | |
| tree | 9ab1b2fe6d6d3f9fae307010360b040b973690ca | |
| parent | f35aff821d533bbe2f2761a997800c198bfa9e8d (diff) | |
| download | emacs-2cd16d74388dc0980422656d215648de83324a94.tar.gz emacs-2cd16d74388dc0980422656d215648de83324a94.zip | |
(filter-buffer-substring): Fix typo in docstring.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a519a937eb6..067ce954c44 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2005-05-31 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * simple.el (filter-buffer-substring): Fix typo in docstring. | ||
| 4 | |||
| 1 | 2005-05-31 Richard M. Stallman <rms@gnu.org> | 5 | 2005-05-31 Richard M. Stallman <rms@gnu.org> |
| 2 | 6 | ||
| 3 | * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not | 7 | * progmodes/vhdl-mode.el (vhdl-fill-region): Test ARG, not |
diff --git a/lisp/simple.el b/lisp/simple.el index 2cb412e4882..b50707531d1 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -2247,7 +2247,7 @@ is nil, the buffer substring is returned unaltered. | |||
| 2247 | If DELETE is non-nil, the text between BEG and END is deleted | 2247 | If DELETE is non-nil, the text between BEG and END is deleted |
| 2248 | from the buffer. | 2248 | from the buffer. |
| 2249 | 2249 | ||
| 2250 | Point is temporarily set to BEG before caling | 2250 | Point is temporarily set to BEG before calling |
| 2251 | `buffer-substring-filters', in case the functions need to know | 2251 | `buffer-substring-filters', in case the functions need to know |
| 2252 | where the text came from. | 2252 | where the text came from. |
| 2253 | 2253 | ||