Mercurial > emacs
comparison src/insdel.c @ 3591:507f64624555
Apply typo patches from Paul Eggert.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Wed, 09 Jun 1993 11:59:12 +0000 |
parents | 789c11177579 |
children | 7d7b899db77d |
comparison
equal
deleted
inserted
replaced
3590:d5f22061277d | 3591:507f64624555 |
---|---|
544 Lisp_Object value; | 544 Lisp_Object value; |
545 { | 545 { |
546 Vafter_change_function = value; | 546 Vafter_change_function = value; |
547 } | 547 } |
548 | 548 |
549 /* Signal a change to the buffer immediatly before it happens. | 549 /* Signal a change to the buffer immediately before it happens. |
550 START and END are the bounds of the text to be changed, | 550 START and END are the bounds of the text to be changed, |
551 as Lisp objects. */ | 551 as Lisp objects. */ |
552 | 552 |
553 signal_before_change (start, end) | 553 signal_before_change (start, end) |
554 Lisp_Object start, end; | 554 Lisp_Object start, end; |
576 call2 (function, start, end); | 576 call2 (function, start, end); |
577 unbind_to (count, Qnil); | 577 unbind_to (count, Qnil); |
578 } | 578 } |
579 } | 579 } |
580 | 580 |
581 /* Signal a change immediatly after it happens. | 581 /* Signal a change immediately after it happens. |
582 POS is the address of the start of the changed text. | 582 POS is the address of the start of the changed text. |
583 LENDEL is the number of characters of the text before the change. | 583 LENDEL is the number of characters of the text before the change. |
584 (Not the whole buffer; just the part that was changed.) | 584 (Not the whole buffer; just the part that was changed.) |
585 LENINS is the number of characters in the changed text. */ | 585 LENINS is the number of characters in the changed text. */ |
586 | 586 |