From: Richard M. Stallman Date: Sun, 14 Oct 2007 18:51:21 +0000 (+0000) Subject: Line break fix. X-Git-Tag: emacs-pretest-22.1.90~609 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8b34a5cc9ab82e4a1985c472cf7cab79010259bf;p=emacs.git Line break fix. --- 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");