# HG changeset patch # User Richard M. Stallman # Date 1192387960 0 # Node ID bec214ca15b587998c211b28f2e5aac5258d58e7 # Parent 03314a80fe7fe73be533adc48c1153f6533cea6c Line break fix. diff -r 03314a80fe7f -r bec214ca15b5 src/xfns.c --- a/src/xfns.c Sun Oct 14 17:30:48 2007 +0000 +++ b/src/xfns.c Sun Oct 14 18:52:40 2007 +0000 @@ -4956,8 +4956,8 @@ 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");