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:
parent
ee0fb2286f
commit
7f59302aef
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue