From: Eli Zaretskii Date: Sat, 14 May 2011 08:46:11 +0000 (+0300) Subject: Fix bug #8652 with indentation of variable docs. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~278 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e3934a8a48bd8769619fc11355100e96cf5f74a5;p=emacs.git Fix bug #8652 with indentation of variable docs. doc/lispref/text.texi (Special Properties): Move @defvar's out of the @table. --- diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index eb88c6ba4f9..6a4fa03e741 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,8 @@ +2011-05-14 Eli Zaretskii + + * text.texi (Special Properties): Move @defvar's out of the + @table. (Bug#8652) + 2011-05-12 Glenn Morris * display.texi (Image Descriptors): Fix typo. (Bug#8495) diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi index 3ff2697dd37..6cb271eec88 100644 --- a/doc/lispref/text.texi +++ b/doc/lispref/text.texi @@ -3272,15 +3272,28 @@ functions (which may be the same function). In any case, all the @code{point-left} functions are called first, followed by all the @code{point-entered} functions. -It is possible with @code{char-after} to examine characters at various +It is possible to use @code{char-after} to examine characters at various buffer positions without moving point to those positions. Only an actual change in the value of point runs these hook functions. +The variable @code{inhibit-point-motion-hooks} can inhibit running the +@code{point-left} and @code{point-entered} hooks, see @ref{Inhibit +point motion hooks}. + +@item composition +@kindex composition @r{(text property)} +This text property is used to display a sequence of characters as a +single glyph composed from components. But the value of the property +itself is completely internal to Emacs and should not be manipulated +directly by, for instance, @code{put-text-property}. + +@end table + @defvar inhibit-point-motion-hooks -When this variable is non-@code{nil}, @code{point-left} and -@code{point-entered} hooks are not run, and the @code{intangible} -property has no effect. Do not set this variable globally; bind it with -@code{let}. +@anchor{Inhibit point motion hooks} When this variable is +non-@code{nil}, @code{point-left} and @code{point-entered} hooks are +not run, and the @code{intangible} property has no effect. Do not set +this variable globally; bind it with @code{let}. @end defvar @defvar show-help-function @@ -3293,15 +3306,6 @@ string to display. Tooltip mode (@pxref{Tooltips,,, emacs, The GNU Emacs Manual}) provides an example. @end defvar -@item composition -@kindex composition @r{(text property)} -This text property is used to display a sequence of characters as a -single glyph composed from components. But the value of the property -itself is completely internal to Emacs and should not be manipulated -directly by, for instance, @code{put-text-property}. - -@end table - @node Format Properties @subsection Formatted Text Properties