1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-18 12:00:38 -07:00

Line break fix.

This commit is contained in:
Richard M. Stallman 2007-10-14 18:51:21 +00:00
parent fe4cd268c7
commit 8b34a5cc9a

View file

@ -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");