Mercurial > emacs
changeset 85294:bec214ca15b5
Line break fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 14 Oct 2007 18:52:40 +0000 |
parents | 03314a80fe7f |
children | 42dbc38be5d2 |
files | src/xfns.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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");