comparison src/insdel.c @ 16153:6c9c298680da

(signal_before_change): Fix previous change.
author Richard M. Stallman <rms@gnu.org>
date Tue, 10 Sep 1996 19:52:09 +0000
parents 76bd16bb5906
children aef021e2c167
comparison
equal deleted inserted replaced
16152:cc2b553290aa 16153:6c9c298680da
780 780
781 /* Signal a change to the buffer immediately before it happens. 781 /* Signal a change to the buffer immediately before it happens.
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
790 start = make_number (start_int); 790 start = make_number (start_int);
791 end = make_number (end_int); 791 end = make_number (end_int);