diff mcabber/mcabber/settings.c @ 1729:e6e89b1d7831

Minor style and header updates
author Mikael Berthe <mikael@lilotux.net>
date Sun, 28 Feb 2010 15:19:27 +0100
parents 552da310b83e
children 4e57d6275a86
line wrap: on
line diff
--- a/mcabber/mcabber/settings.c	Sun Feb 28 14:15:38 2010 +0100
+++ b/mcabber/mcabber/settings.c	Sun Feb 28 15:19:27 2010 +0100
@@ -1,7 +1,7 @@
 /*
  * settings.c   -- Configuration stuff
  *
- * Copyright (C) 2005-2009 Mikael Berthe <mikael@lilotux.net>
+ * Copyright (C) 2005-2010 Mikael Berthe <mikael@lilotux.net>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -251,14 +251,11 @@
   key = assignment;
   // Remove leading spaces in option name
   while ((!isalnum(*key)) && (*key != '=') && *key) {
-    //if (!isblank(*key))
-    //  scr_LogPrint("Error in assignment parsing!");
     key++;
   }
   if (!*key) return FALSE; // Empty assignment
 
   if (*key == '=') {
-    //scr_LogPrint("Cannot parse assignment!");
     return FALSE;
   }
   // Ok, key points to the option name
@@ -266,7 +263,6 @@
   for (val = key+1 ; *val && (*val != '=') ; val++)
     if (!isalnum(*val) && !isblank(*val) && (*val != '_') && (*val != '-')) {
       // Key should only have alnum chars...
-      //scr_LogPrint("Error in assignment parsing!");
       return FALSE;
     }
   // Remove trailing spaces in option name:
@@ -275,8 +271,7 @@
   // Check for embedded whitespace characters
   for (p = key; p < t; p++) {
     if (isblank(*p)) {
-      //scr_LogPrint("Error in assignment parsing!"
-      //             " (Name should not contain space chars)");
+      // Name should not contain space chars...
       return FALSE;
     }
   }