From 8b34a5cc9ab82e4a1985c472cf7cab79010259bf Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 14 Oct 2007 18:51:21 +0000 Subject: [PATCH] Line break fix. --- src/xfns.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xfns.c b/src/xfns.c index d1f35eee4e7..f0cb26b72b4 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -4936,8 +4936,8 @@ x_create_tip_frame (dpyinfo, parms, text) if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1) disptype = intern ("mono"); - else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale || - FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray) + else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale + || FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray) disptype = intern ("grayscale"); else disptype = intern ("color"); -- 2.39.2