aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-10-04 12:31:37 +0000
committerKarl Heuer1994-10-04 12:31:37 +0000
commit11bc240280b935b19344a27d328ca430ce94840d (patch)
treeaa028a2565079a11086e693f23fb559547ed0094 /src
parent7411261396dd39a6e2e09bfe3a4050028b246663 (diff)
downloademacs-11bc240280b935b19344a27d328ca430ce94840d.tar.gz
emacs-11bc240280b935b19344a27d328ca430ce94840d.zip
(display_text_line): Use new accessor macros instead of calling XSET directly.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 1eddfd23c39..6f9cd70e5a3 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -2177,7 +2177,7 @@ display_text_line (w, start, vpos, hpos, taboffset)
2177 { 2177 {
2178 Lisp_Object position, limit, endpos, prop, ww; 2178 Lisp_Object position, limit, endpos, prop, ww;
2179 XFASTINT (position) = pos; 2179 XFASTINT (position) = pos;
2180 XSET (ww, Lisp_Window, w); 2180 XSETWINDOW (ww, w);
2181 prop = Fget_char_property (position, Qinvisible, ww); 2181 prop = Fget_char_property (position, Qinvisible, ww);
2182 /* This is just an estimate to give reasonable 2182 /* This is just an estimate to give reasonable
2183 performance; nothing should go wrong if it is too small. */ 2183 performance; nothing should go wrong if it is too small. */