1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-05-03 03:32:44 -07:00

Various comment changes.

This commit is contained in:
Joseph Arceneaux 1992-10-01 00:56:11 +00:00
parent e115a65b13
commit d7e3e52b6e

View file

@ -1277,9 +1277,7 @@ graft_intervals_into_buffer (source, position, buffer)
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 @@ set_point (position, buffer)
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 @@ copy_intervals (tree, start, length)
/* 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;