aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-10-04 12:32:20 +0000
committerKarl Heuer1994-10-04 12:32:20 +0000
commitac22a6c4381822166d515f18cdab7f81f657421b (patch)
treeda3920bc177fcb222279f90c3eb3bc98a297aa70 /src
parent11bc240280b935b19344a27d328ca430ce94840d (diff)
downloademacs-ac22a6c4381822166d515f18cdab7f81f657421b.tar.gz
emacs-ac22a6c4381822166d515f18cdab7f81f657421b.zip
(compute_char_face): Use new accessor macros instead of calling XSET directly.
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c2
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)
807 if (XBUFFER (w->buffer) != current_buffer) 807 if (XBUFFER (w->buffer) != current_buffer)
808 abort (); 808 abort ();
809 809
810 XSET (frame, Lisp_Frame, f); 810 XSETFRAME (frame, f);
811 811
812 endpos = ZV; 812 endpos = ZV;
813 if (pos < region_beg && region_beg < endpos) 813 if (pos < region_beg && region_beg < endpos)