Mercurial > emacs
changeset 1288:b05982e82d93
Various comment changes.
author | Joseph Arceneaux <jla@gnu.org> |
---|---|
date | Thu, 01 Oct 1992 00:56:11 +0000 |
parents | 02bd1ea07b17 |
children | 74b26ab86df4 |
files | src/intervals.c |
diffstat | 1 files changed, 5 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/intervals.c Thu Oct 01 00:56:11 1992 +0000 +++ b/src/intervals.c Thu Oct 01 00:56:11 1992 +0000 @@ -1277,9 +1277,7 @@ an invisible interval which is not displayed with a special glyph, skip intervals until we find one. Point may be at the first position of an invisible interval, if it is displayed with a - special glyph. - - This is the only place `PT' is an lvalue in all of emacs. */ + special glyph. */ void set_point (position, buffer) @@ -1352,8 +1350,9 @@ else buffer->text.pt = to->position; - /* We should run point-left and point-entered hooks here, iff the - two intervals are not equivalent. */ + /* We run point-left and point-entered hooks here, iff the + two intervals are not equivalent. These hooks take + (old_point, new_point) as arguments. */ if (! intervals_equal (from, to)) { Lisp_Object val; @@ -1549,7 +1548,7 @@ /* Give STRING the properties of BUFFER from POSITION to LENGTH. */ -void +INLINE void copy_intervals_to_string (string, buffer, position, length) Lisp_Object string, buffer; int position, length;