aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-08-12 14:16:14 +0000
committerJim Blandy1992-08-12 14:16:14 +0000
commit6c735a5991a431400efb910749f510fcf28d94e4 (patch)
tree9455fcaf8ea3b658c8f7dc94141f936e9a94ff03 /src
parent5dadd3a2c35a9a63f8319c8fa0ee2ebba440e68b (diff)
downloademacs-6c735a5991a431400efb910749f510fcf28d94e4.tar.gz
emacs-6c735a5991a431400efb910749f510fcf28d94e4.zip
* 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.
Diffstat (limited to 'src')
-rw-r--r--src/scroll.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scroll.c b/src/scroll.c
index cc743ea0d59..190ff4ae2a6 100644
--- a/src/scroll.c
+++ b/src/scroll.c
@@ -254,7 +254,7 @@ do_scrolling (frame, matrix, window_size, unchanged_at_top)
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));