Mercurial > emacs
changeset 21526:fff9425b9230
(signal_after_change): Fix mixing of Lisp_Object and
int.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Tue, 14 Apr 1998 13:01:05 +0000 |
parents | 0ed9ea6eeef3 |
children | 39c919d2a8be |
files | src/insdel.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/insdel.c Tue Apr 14 13:00:27 1998 +0000 +++ b/src/insdel.c Tue Apr 14 13:01:05 1998 +0000 @@ -2360,7 +2360,8 @@ /* After an insertion, call the text properties insert-behind-hooks or insert-in-front-hooks. */ if (lendel == 0) - report_interval_modification (charpos, charpos + lenins); + report_interval_modification (make_number (charpos), + make_number (charpos + lenins)); } Lisp_Object