diff options
| author | Karl Heuer | 1994-10-04 12:31:37 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-10-04 12:31:37 +0000 |
| commit | 11bc240280b935b19344a27d328ca430ce94840d (patch) | |
| tree | aa028a2565079a11086e693f23fb559547ed0094 | |
| parent | 7411261396dd39a6e2e09bfe3a4050028b246663 (diff) | |
| download | emacs-11bc240280b935b19344a27d328ca430ce94840d.tar.gz emacs-11bc240280b935b19344a27d328ca430ce94840d.zip | |
(display_text_line): Use new accessor macros instead of calling XSET directly.
| -rw-r--r-- | src/xdisp.c | 2 |
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. */ |