[gimp] put operators on end of line in long expressions



commit 4ec7def1d017341870abfd60e9c918a899698f22
Author: Nils Philippsen <nils redhat com>
Date:   Sat Feb 11 16:50:44 2012 +0100

    put operators on end of line in long expressions
    
    This fixes commit 3a151bd1a974281c75611ef800e41cbbca7b9015, GIMP is
    deviating from the GNU coding style here.

 app/core/gimpdata.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/app/core/gimpdata.c b/app/core/gimpdata.c
index 27eaa3e..e1461d4 100644
--- a/app/core/gimpdata.c
+++ b/app/core/gimpdata.c
@@ -886,9 +886,9 @@ gimp_data_set_folder_tags (GimpData    *data,
     {
       size_t top_directory_len = strlen (top_directory);
 
-      g_return_if_fail (g_str_has_prefix (dirname, top_directory)
-                        && (dirname[top_directory_len] == '\0'
-                            || G_IS_DIR_SEPARATOR (dirname[top_directory_len])));
+      g_return_if_fail (g_str_has_prefix (dirname, top_directory) &&
+                        (dirname[top_directory_len] == '\0' ||
+                         G_IS_DIR_SEPARATOR (dirname[top_directory_len])));
 
       do
         {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]