comparison src/scroll.c @ 968:861714452cb3

* scroll.c (FRAME_IS_TERMCAP, FRAME_IS_X, FRAME_HAS_MINIBUF): Renamed these to FRAME_TERMCAP_P, FRAME_X_P, and FRAME_HAS_MINIBUF_P, for consistency with the rest of the frame macros.
author Jim Blandy <jimb@redhat.com>
date Wed, 12 Aug 1992 14:16:14 +0000
parents b9e81bfc7ad9
children 9b29df8c7cb3
comparison
equal deleted inserted replaced
967:6df04dcbd2e9 968:861714452cb3
252 bzero (temp_frame->enable, temp_frame->height * sizeof (char)); 252 bzero (temp_frame->enable, temp_frame->height * sizeof (char));
253 bcopy (current_frame->bufp, temp_frame->bufp, 253 bcopy (current_frame->bufp, temp_frame->bufp,
254 current_frame->height * sizeof (int)); 254 current_frame->height * sizeof (int));
255 255
256 #ifdef HAVE_X_WINDOWS 256 #ifdef HAVE_X_WINDOWS
257 if (FRAME_IS_X (frame)) 257 if (FRAME_X_P (frame))
258 { 258 {
259 bcopy (current_frame->nruns, temp_frame->nruns, 259 bcopy (current_frame->nruns, temp_frame->nruns,
260 current_frame->height * sizeof (int)); 260 current_frame->height * sizeof (int));
261 bcopy (current_frame->face_list, temp_frame->face_list, 261 bcopy (current_frame->face_list, temp_frame->face_list,
262 current_frame->height * sizeof (struct run *)); 262 current_frame->height * sizeof (struct run *));