diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/simple.el | 1 | ||||
| -rw-r--r-- | lisp/subr.el | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 85a7476dbe0..bf8b6a75ac7 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -3468,7 +3468,6 @@ extract characters that are special to a buffer, and should not | |||
| 3468 | be copied into other buffers." | 3468 | be copied into other buffers." |
| 3469 | (funcall filter-buffer-substring-function beg end delete)) | 3469 | (funcall filter-buffer-substring-function beg end delete)) |
| 3470 | 3470 | ||
| 3471 | ;; FIXME: `with-wrapper-hook' is obsolete | ||
| 3472 | (defun buffer-substring--filter (beg end &optional delete) | 3471 | (defun buffer-substring--filter (beg end &optional delete) |
| 3473 | (with-wrapper-hook filter-buffer-substring-functions (beg end delete) | 3472 | (with-wrapper-hook filter-buffer-substring-functions (beg end delete) |
| 3474 | (cond | 3473 | (cond |
diff --git a/lisp/subr.el b/lisp/subr.el index 1bfa3c83a35..e4350bffff8 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1461,7 +1461,7 @@ Each hook function definition is used to construct the FUN passed | |||
| 1461 | to the next hook function, if any. The last (or \"outermost\") | 1461 | to the next hook function, if any. The last (or \"outermost\") |
| 1462 | FUN is then called once." | 1462 | FUN is then called once." |
| 1463 | (declare (indent 2) (debug (form sexp body)) | 1463 | (declare (indent 2) (debug (form sexp body)) |
| 1464 | (obsolete "use a <foo>-function variable modified by add-function." | 1464 | (obsolete "use a <foo>-function variable modified by `add-function'." |
| 1465 | "24.4")) | 1465 | "24.4")) |
| 1466 | ;; We need those two gensyms because CL's lexical scoping is not available | 1466 | ;; We need those two gensyms because CL's lexical scoping is not available |
| 1467 | ;; for function arguments :-( | 1467 | ;; for function arguments :-( |