comparison src/xfns.c @ 85294:bec214ca15b5

Line break fix.
author Richard M. Stallman <rms@gnu.org>
date Sun, 14 Oct 2007 18:52:40 +0000
parents 5c2151fd63a9
children 591c29778a30
comparison
equal deleted inserted replaced
85293:03314a80fe7f 85294:bec214ca15b5
4954 { 4954 {
4955 Lisp_Object disptype; 4955 Lisp_Object disptype;
4956 4956
4957 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1) 4957 if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
4958 disptype = intern ("mono"); 4958 disptype = intern ("mono");
4959 else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale || 4959 else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale
4960 FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray) 4960 || FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray)
4961 disptype = intern ("grayscale"); 4961 disptype = intern ("grayscale");
4962 else 4962 else
4963 disptype = intern ("color"); 4963 disptype = intern ("color");
4964 4964
4965 if (NILP (Fframe_parameter (frame, Qdisplay_type))) 4965 if (NILP (Fframe_parameter (frame, Qdisplay_type)))