# HG changeset patch # User Joseph Arceneaux # Date 717900971 0 # Node ID b05982e82d9381137abe8697cc6b9297a24d1b2b # Parent 02bd1ea07b17f84fb36705d2e21d5472127e254d Various comment changes. diff -r 02bd1ea07b17 -r b05982e82d93 src/intervals.c --- 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;