aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2007-08-25 23:50:16 +0000
committerRichard M. Stallman2007-08-25 23:50:16 +0000
commit7f59302aef3e384cfca55b03490a1542060e821c (patch)
treee1474b2992c263bb1af4282868a1750d1876657a /src
parentee0fb2286f78bb0500d7b10821a0824f35d26002 (diff)
downloademacs-7f59302aef3e384cfca55b03490a1542060e821c.tar.gz
emacs-7f59302aef3e384cfca55b03490a1542060e821c.zip
Syntactic cleanup.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index da33b05c4c5..d22c9a53bc3 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -18446,10 +18446,10 @@ else if the text is replaced by an ellipsis. */)
18446 (pos_or_prop) 18446 (pos_or_prop)
18447 Lisp_Object pos_or_prop; 18447 Lisp_Object pos_or_prop;
18448{ 18448{
18449 Lisp_Object prop = 18449 Lisp_Object prop
18450 (NATNUMP (pos_or_prop) || MARKERP (pos_or_prop)) 18450 = (NATNUMP (pos_or_prop) || MARKERP (pos_or_prop)
18451 ? Fget_char_property (pos_or_prop, Qinvisible, Qnil) 18451 ? Fget_char_property (pos_or_prop, Qinvisible, Qnil)
18452 : pos_or_prop; 18452 : pos_or_prop);
18453 int invis = TEXT_PROP_MEANS_INVISIBLE (prop); 18453 int invis = TEXT_PROP_MEANS_INVISIBLE (prop);
18454 return (invis == 0 ? Qnil 18454 return (invis == 0 ? Qnil
18455 : invis == 1 ? Qt 18455 : invis == 1 ? Qt