1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 11:21:04 -08:00

Syntactic cleanup.

This commit is contained in:
Richard M. Stallman 2007-08-25 23:50:16 +00:00
parent ee0fb2286f
commit 7f59302aef

View file

@ -18446,10 +18446,10 @@ else if the text is replaced by an ellipsis. */)
(pos_or_prop)
Lisp_Object pos_or_prop;
{
Lisp_Object prop =
(NATNUMP (pos_or_prop) || MARKERP (pos_or_prop))
? Fget_char_property (pos_or_prop, Qinvisible, Qnil)
: pos_or_prop;
Lisp_Object prop
= (NATNUMP (pos_or_prop) || MARKERP (pos_or_prop)
? Fget_char_property (pos_or_prop, Qinvisible, Qnil)
: pos_or_prop);
int invis = TEXT_PROP_MEANS_INVISIBLE (prop);
return (invis == 0 ? Qnil
: invis == 1 ? Qt