diff options
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | src/buffer.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 17c4fb71868..df34b15a646 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2002-04-23 Colin Walters <walters@verbum.org> | ||
| 2 | |||
| 3 | * play/gamegrid.el (gamegrid-add-score-with-update-game-score): | ||
| 4 | Handle the case where we're already viewing the score file. | ||
| 5 | |||
| 1 | 2002-04-23 Andreas Schwab <schwab@suse.de> | 6 | 2002-04-23 Andreas Schwab <schwab@suse.de> |
| 2 | 7 | ||
| 3 | * menu-bar.el (menu-bar-goto-menu): Fix bindings for next-tag and | 8 | * menu-bar.el (menu-bar-goto-menu): Fix bindings for next-tag and |
diff --git a/src/buffer.c b/src/buffer.c index b2d8ada9a97..08e5a3a24b1 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5474,7 +5474,7 @@ from happening repeatedly and making Emacs nonfunctional. */); | |||
| 5474 | Vbefore_change_functions = Qnil; | 5474 | Vbefore_change_functions = Qnil; |
| 5475 | 5475 | ||
| 5476 | DEFVAR_LISP ("after-change-functions", &Vafter_change_functions, | 5476 | DEFVAR_LISP ("after-change-functions", &Vafter_change_functions, |
| 5477 | doc: /* List of function to call after each text change. | 5477 | doc: /* List of functions to call after each text change. |
| 5478 | Three arguments are passed to each function: the positions of | 5478 | Three arguments are passed to each function: the positions of |
| 5479 | the beginning and end of the range of changed text, | 5479 | the beginning and end of the range of changed text, |
| 5480 | and the length in bytes of the pre-change text replaced by that range. | 5480 | and the length in bytes of the pre-change text replaced by that range. |