diff options
| author | Richard M. Stallman | 1996-09-10 19:52:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-09-10 19:52:09 +0000 |
| commit | 6022d4938e7c848892c962389859960519ae0cf8 (patch) | |
| tree | fdc7230da84ba7755e8e9e7d9f4ba11109cda309 /src | |
| parent | 45b248b417774953f55c2c3d2b78e7f1df986078 (diff) | |
| download | emacs-6022d4938e7c848892c962389859960519ae0cf8.tar.gz emacs-6022d4938e7c848892c962389859960519ae0cf8.zip | |
(signal_before_change): Fix previous change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/insdel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/insdel.c b/src/insdel.c index 56ae6535c00..8b4cc5f8c2a 100644 --- a/src/insdel.c +++ b/src/insdel.c | |||
| @@ -782,8 +782,8 @@ prepare_to_modify_buffer (start, end) | |||
| 782 | START_INT and END_INT are the bounds of the text to be changed. */ | 782 | START_INT and END_INT are the bounds of the text to be changed. */ |
| 783 | 783 | ||
| 784 | void | 784 | void |
| 785 | signal_before_change (start, end) | 785 | signal_before_change (start_int, end_int) |
| 786 | int start_int, end_end; | 786 | int start_int, end_int; |
| 787 | { | 787 | { |
| 788 | Lisp_Object start, end; | 788 | Lisp_Object start, end; |
| 789 | 789 | ||