Mercurial > emacs
changeset 16144:2ca3765fdc00
(syms_of_buffer): Doc fixes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 09 Sep 1996 22:36:48 +0000 |
parents | c19260c70d7b |
children | 4f3df9697fe0 |
files | src/buffer.c |
diffstat | 1 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/buffer.c Mon Sep 09 22:27:02 1996 +0000 +++ b/src/buffer.c Mon Sep 09 22:36:48 1996 +0000 @@ -3809,7 +3809,7 @@ "Don't ask."); */ DEFVAR_LISP ("before-change-function", &Vbefore_change_function, - "Function to call before each text change.\n\ + "If non-nil, a function to call before each text change (obsolete).\n\ Two arguments are passed to the function: the positions of\n\ the beginning and end of the range of old text to be changed.\n\ \(For an insertion, the beginning and end are at the same place.)\n\ @@ -3820,11 +3820,12 @@ That's because these variables are temporarily set to nil.\n\ As a result, a hook function cannot straightforwardly alter the value of\n\ these variables. See the Emacs Lisp manual for a way of\n\ -accomplishing an equivalent result by using other variables."); +accomplishing an equivalent result by using other variables.\n\n\ +This variable is obsolete; use `before-change-functions' instead."); Vbefore_change_function = Qnil; DEFVAR_LISP ("after-change-function", &Vafter_change_function, - "Function to call after each text change.\n\ + "If non-nil, a Function to call after each text change (obsolete).\n\ Three arguments are passed to the function: the positions of\n\ the beginning and end of the range of changed text,\n\ and the length of the pre-change text replaced by that range.\n\ @@ -3837,7 +3838,8 @@ That's because these variables are temporarily set to nil.\n\ As a result, a hook function cannot straightforwardly alter the value of\n\ these variables. See the Emacs Lisp manual for a way of\n\ -accomplishing an equivalent result by using other variables."); +accomplishing an equivalent result by using other variables.\n\n\ +This variable is obsolete; use `after-change-functions' instead."); Vafter_change_function = Qnil; DEFVAR_LISP ("before-change-functions", &Vbefore_change_functions,