maint: update almost all copyright ranges to include 2011
[gnulib.git] / lib / unistr / u-set.h
index a093e7f..42cf01d 100644 (file)
@@ -1,5 +1,5 @@
 /* Fill UTF-8/UTF-16/UTF-32 string.
-   Copyright (C) 1999, 2002, 2006 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2002, 2006, 2009-2011 Free Software Foundation, Inc.
    Written by Bruno Haible <bruno@clisp.org>, 2002.
 
    This program is free software: you can redistribute it and/or modify it
@@ -23,17 +23,17 @@ FUNC (UNIT *s, ucs4_t uc, size_t n)
   if (n > 0)
     {
       if (IS_SINGLE_UNIT (uc))
-       {
-         UNIT *ptr = s;
+        {
+          UNIT *ptr = s;
 
-         for (; n > 0; n--)
-           *ptr++ = uc;
-       }
+          for (; n > 0; n--)
+            *ptr++ = uc;
+        }
       else
-       {
-         errno = EILSEQ;
-         return NULL;
-       }
+        {
+          errno = EILSEQ;
+          return NULL;
+        }
     }
   return s;
 }