comparison src/buffer.c @ 19466:3fce1e7c0fd0

(syms_of_buffer): Doc fixes.
author Richard M. Stallman <rms@gnu.org>
date Fri, 22 Aug 1997 05:51:48 +0000
parents a7d44588be35
children 30f977ea74db
comparison
equal deleted inserted replaced
19465:10d0ae6abbea 19466:3fce1e7c0fd0
4103 "If non-nil, a Function to call after each text change (obsolete).\n\ 4103 "If non-nil, a Function to call after each text change (obsolete).\n\
4104 Three arguments are passed to the function: the positions of\n\ 4104 Three arguments are passed to the function: the positions of\n\
4105 the beginning and end of the range of changed text,\n\ 4105 the beginning and end of the range of changed text,\n\
4106 and the length of the pre-change text replaced by that range.\n\ 4106 and the length of the pre-change text replaced by that range.\n\
4107 \(For an insertion, the pre-change length is zero;\n\ 4107 \(For an insertion, the pre-change length is zero;\n\
4108 for a deletion, that length is the number of characters deleted,\n\ 4108 for a deletion, that length is the number of bytes deleted,\n\
4109 and the post-change beginning and end are at the same place.)\n\ 4109 and the post-change beginning and end are at the same place.)\n\
4110 \n\ 4110 \n\
4111 Buffer changes made while executing the `after-change-function'\n\ 4111 Buffer changes made while executing the `after-change-function'\n\
4112 don't call any before-change or after-change functions.\n\ 4112 don't call any before-change or after-change functions.\n\
4113 That's because these variables are temporarily set to nil.\n\ 4113 That's because these variables are temporarily set to nil.\n\
4134 4134
4135 DEFVAR_LISP ("after-change-functions", &Vafter_change_functions, 4135 DEFVAR_LISP ("after-change-functions", &Vafter_change_functions,
4136 "List of function to call after each text change.\n\ 4136 "List of function to call after each text change.\n\
4137 Three arguments are passed to each function: the positions of\n\ 4137 Three arguments are passed to each function: the positions of\n\
4138 the beginning and end of the range of changed text,\n\ 4138 the beginning and end of the range of changed text,\n\
4139 and the length of the pre-change text replaced by that range.\n\ 4139 and the length in bytes of the pre-change text replaced by that range.\n\
4140 \(For an insertion, the pre-change length is zero;\n\ 4140 \(For an insertion, the pre-change length is zero;\n\
4141 for a deletion, that length is the number of characters deleted,\n\ 4141 for a deletion, that length is the number of bytes deleted,\n\
4142 and the post-change beginning and end are at the same place.)\n\ 4142 and the post-change beginning and end are at the same place.)\n\
4143 \n\ 4143 \n\
4144 Buffer changes made while executing the `after-change-functions'\n\ 4144 Buffer changes made while executing the `after-change-functions'\n\
4145 don't call any before-change or after-change functions.\n\ 4145 don't call any before-change or after-change functions.\n\
4146 That's because these variables are temporarily set to nil.\n\ 4146 That's because these variables are temporarily set to nil.\n\