diff options
| author | Richard M. Stallman | 2007-08-25 23:50:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-08-25 23:50:16 +0000 |
| commit | 7f59302aef3e384cfca55b03490a1542060e821c (patch) | |
| tree | e1474b2992c263bb1af4282868a1750d1876657a /src | |
| parent | ee0fb2286f78bb0500d7b10821a0824f35d26002 (diff) | |
| download | emacs-7f59302aef3e384cfca55b03490a1542060e821c.tar.gz emacs-7f59302aef3e384cfca55b03490a1542060e821c.zip | |
Syntactic cleanup.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 8 |
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 |