diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-10-04 12:32:20 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-10-04 12:32:20 +0000 |
commit | 6836f97283736ab04baad41911ede5814793c2ee (patch) | |
tree | 44aee0c199a8d296b644b6a013c5e1040c012722 /src | |
parent | 12a11adfa5be22fff69e5fc9fa186e08ffcd072c (diff) | |
download | emacs-6836f97283736ab04baad41911ede5814793c2ee.tar.gz |
(compute_char_face): Use new accessor macros instead of calling XSET directly.
Diffstat (limited to 'src')
-rw-r--r-- | src/xfaces.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 7ac1a400cef..cbbc1eb26f8 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -807,7 +807,7 @@ compute_char_face (f, w, pos, region_beg, region_end, endptr, limit, mouse) if (XBUFFER (w->buffer) != current_buffer) abort (); - XSET (frame, Lisp_Frame, f); + XSETFRAME (frame, f); endpos = ZV; if (pos < region_beg && region_beg < endpos) |