1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Fix last change.

This commit is contained in:
Dave Love 1999-11-26 21:27:25 +00:00
parent 19d63704de
commit 07c8b450a9
3 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,9 @@
1999-11-26 Dave Love <fx@gnu.org>
* comint.el: Fix last change.
* emacs-lisp/advice.el: Fix last change.
1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
* cus-edit.el (Custom-reset-standard): Doc fix.

View file

@ -1348,10 +1348,9 @@ string.
The functions on the list are called sequentially, and each one is
given the string returned by the previous one. The string returned by
the last function is the text that is actually inserted in the
redirection buffer.")
redirection buffer.
This variable is buffer-local.")
This variable is permanent-local.")
;; The purpose of using this filter for comint processes
;; is to keep comint-last-input-end from moving forward

View file

@ -3665,7 +3665,7 @@ If FUNCTION was not advised this will be a noop."
(defun ad-recover (function)
"Try to recover FUNCTION's original definition, and unadvise it.
This is more low-level than `ad-unadvise' in that it does not do
deactivation, which might run hooks and get into other trouble."
deactivation, which might run hooks and get into other trouble.
Use in emergencies."
;; Use more primitive interactive behavior here: Accept any symbol that's
;; currently defined in obarray, not necessarily with a function definition: