]> granicus.if.org Git - onig/commitdiff
fix indent
authorK.Kosako <kosako@sofnec.co.jp>
Tue, 23 May 2017 07:39:02 +0000 (16:39 +0900)
committerK.Kosako <kosako@sofnec.co.jp>
Tue, 23 May 2017 07:39:02 +0000 (16:39 +0900)
src/regexec.c

index 2fa0f3d37e07d62954c8421205f8058e4f25a2fb..4a6cd5c73b75f7e74449ec59d0e3ec2f0de21ff6 100644 (file)
@@ -2,7 +2,7 @@
   regexec.c -  Oniguruma (regular expression library)
 **********************************************************************/
 /*-
- * Copyright (c) 2002-2016  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>
+ * Copyright (c) 2002-2017  K.Kosako  <sndgk393 AT ybb DOT ne DOT jp>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -1346,8 +1346,8 @@ match_at(regex_t* reg, const UChar* str, const UChar* end,
       fprintf(stderr, "%4d> \"", (int )(s - str));
       bp = buf;
       for (i = 0, q = s; i < 7 && q < end; i++) {
-       len = enclen(encode, q);
-       while (len-- > 0) *bp++ = *q++;
+        len = enclen(encode, q);
+        while (len-- > 0) *bp++ = *q++;
       }
       if (q < end) { xmemcpy(bp, "...\"", 4); bp += 4; }
       else         { xmemcpy(bp, "\"",    1); bp += 1; }