From 41b57cab807be8b4d1303523daaf400811438276 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Sun, 2 Mar 2003 05:31:45 +0000
Subject: [PATCH] fix weird indentation

---
 Graphics/CreateFile.cpp | 24 ++++++++----------------
 1 file changed, 8 insertions(+), 16 deletions(-)

diff --git a/Graphics/CreateFile.cpp b/Graphics/CreateFile.cpp
index d5aef962a8..2df138f8f3 100644
--- a/Graphics/CreateFile.cpp
+++ b/Graphics/CreateFile.cpp
@@ -1,4 +1,4 @@
-// $Id: CreateFile.cpp,v 1.38 2003-03-01 22:36:39 geuzaine Exp $
+// $Id: CreateFile.cpp,v 1.39 2003-03-02 05:31:45 geuzaine Exp $
 //
 // Copyright (C) 1997 - 2003 C. Geuzaine, J.-F. Remacle
 //
@@ -204,22 +204,14 @@ void CreateOutputFile(char *name, int format)
       Msg(GERROR, "Unable to open file '%s'", name);
       return;
     }
-    psformat = (format == FORMAT_PS
-                || format == FORMAT_PSTEX) ? GL2PS_PS : GL2PS_EPS;
-    pssort =
-      (CTX.print.eps_quality == 1) ? GL2PS_SIMPLE_SORT : GL2PS_BSP_SORT;
+    psformat = (format == FORMAT_PS || format == FORMAT_PSTEX) ? GL2PS_PS : GL2PS_EPS;
+    pssort = (CTX.print.eps_quality == 1) ? GL2PS_SIMPLE_SORT : GL2PS_BSP_SORT;
     psoptions =
-      GL2PS_SIMPLE_LINE_OFFSET | GL2PS_SILENT | (CTX.print.
-                                                 eps_occlusion_culling ?
-                                                 GL2PS_OCCLUSION_CULL : 0) |
-      (CTX.print.eps_best_root ? GL2PS_BEST_ROOT : 0) | (CTX.print.
-                                                         eps_background ?
-                                                         GL2PS_DRAW_BACKGROUND
-                                                         : 0) | (format ==
-                                                                 FORMAT_PSTEX
-                                                                 ?
-                                                                 GL2PS_NO_TEXT
-                                                                 : 0) |
+      GL2PS_SIMPLE_LINE_OFFSET | GL2PS_SILENT | 
+      (CTX.print.eps_occlusion_culling ? GL2PS_OCCLUSION_CULL : 0) |
+      (CTX.print.eps_best_root ? GL2PS_BEST_ROOT : 0) |
+      (CTX.print.eps_background ? GL2PS_DRAW_BACKGROUND : 0) |
+      (format == FORMAT_PSTEX ? GL2PS_NO_TEXT : 0) |
       (format == FORMAT_EPSTEX ? GL2PS_NO_TEXT : 0);
 
     size3d = 0;
-- 
GitLab