]> err.no Git - sope/blobdiff - sope-ical/versitSaxDriver/VSStringFormatter.m
added --frameworks option to configure
[sope] / sope-ical / versitSaxDriver / VSStringFormatter.m
index ae2de6ec03ae83ed5fcd8167c84ce3fb83b3f229..7f8dcae2b212b92329f8ae4ac9ee4e661eb10865 100644 (file)
@@ -1,26 +1,24 @@
 /*
Copyright (C) 2004 OpenGroupware.org
 Copyright (C) 2004-2005 OpenGroupware.org
  
- This file is part of versitSaxDriver, written for the OpenGroupware.org
- project (OGo).
 This file is part of versitSaxDriver, written for the OpenGroupware.org
 project (OGo).
  
OGo is free software; you can redistribute it and/or modify it under
- the terms of the GNU Lesser General Public License as published by the
- Free Software Foundation; either version 2, or (at your option) any
- later version.
 SOPE is free software; you can redistribute it and/or modify it under
 the terms of the GNU Lesser General Public License as published by the
 Free Software Foundation; either version 2, or (at your option) any
 later version.
  
OGo is distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or
- FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
- License for more details.
 SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
 WARRANTY; without even the implied warranty of MERCHANTABILITY or
 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
 License for more details.
  
- You should have received a copy of the GNU Lesser General Public
- License along with OGo; see the file COPYING.  If not, write to the
- Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
- 02111-1307, USA.
- */
-// $Id$
-
+  You should have received a copy of the GNU Lesser General Public
+  License along with SOPE; see the file COPYING.  If not, write to the
+  Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
+  02111-1307, USA.
+*/
 
 #include "VSStringFormatter.h"
 #include "common.h"
@@ -72,7 +70,7 @@ static NSCharacterSet *escSet = nil;
     /* test edge case */
     if(NSMaxRange(escRange) < length) {
       unichar c = [_s characterAtIndex:escRange.location + 1];
-      if(c == 'n') {
+      if(c == 'n' || c == 'N') {
         [safeString appendString:@"\n"];
         escRange.length += 1; /* skip the 'n' */
       }
@@ -93,4 +91,4 @@ static NSCharacterSet *escSet = nil;
   return safeString;
 }
 
-@end
+@end /* VSStringFormatter */