aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2007-10-14 18:51:21 +0000
committerRichard M. Stallman2007-10-14 18:51:21 +0000
commit8b34a5cc9ab82e4a1985c472cf7cab79010259bf (patch)
treea9dcee5ed40f2c2a4a12a4c5dd3afbac5c81d3c5
parentfe4cd268c7b3a0f6c78939a6ad3e12ff9b2295f5 (diff)
downloademacs-8b34a5cc9ab82e4a1985c472cf7cab79010259bf.tar.gz
emacs-8b34a5cc9ab82e4a1985c472cf7cab79010259bf.zip
Line break fix.
-rw-r--r--src/xfns.c4
1 files 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)
4936 4936
4937 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1) 4937 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
4938 disptype = intern ("mono"); 4938 disptype = intern ("mono");
4939 else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale || 4939 else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale
4940 FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray) 4940 || FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray)
4941 disptype = intern ("grayscale"); 4941 disptype = intern ("grayscale");
4942 else 4942 else
4943 disptype = intern ("color"); 4943 disptype = intern ("color");