comparison src/xfaces.c @ 9284:a969e0eefaf5

(compute_char_face): Use new accessor macros instead of calling XSET directly.
author Karl Heuer <kwzh@gnu.org>
date Tue, 04 Oct 1994 12:32:20 +0000
parents 45bac5feb065
children bcf42f7e049a
comparison
equal deleted inserted replaced
9283:be217af4e252 9284:a969e0eefaf5
805 /* W must display the current buffer. We could write this function 805 /* W must display the current buffer. We could write this function
806 to use the frame and buffer of W, but right now it doesn't. */ 806 to use the frame and buffer of W, but right now it doesn't. */
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)
814 endpos = region_beg; 814 endpos = region_beg;
815 815