Module Name:    src
Committed By:   christos
Date:           Tue Mar 15 23:11:49 UTC 2011

Modified Files:
        src/usr.bin/printf: printf.c

Log Message:
support grouping format.


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/usr.bin/printf/printf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/printf/printf.c
diff -u src/usr.bin/printf/printf.c:1.34 src/usr.bin/printf/printf.c:1.35
--- src/usr.bin/printf/printf.c:1.34	Tue Oct 13 15:28:31 2009
+++ src/usr.bin/printf/printf.c	Tue Mar 15 19:11:49 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: printf.c,v 1.34 2009/10/13 19:28:31 christos Exp $	*/
+/*	$NetBSD: printf.c,v 1.35 2011/03/15 23:11:49 christos Exp $	*/
 
 /*
  * Copyright (c) 1989, 1993
@@ -41,7 +41,7 @@
 #if 0
 static char sccsid[] = "@(#)printf.c	8.2 (Berkeley) 3/22/95";
 #else
-__RCSID("$NetBSD: printf.c,v 1.34 2009/10/13 19:28:31 christos Exp $");
+__RCSID("$NetBSD: printf.c,v 1.35 2011/03/15 23:11:49 christos Exp $");
 #endif
 #endif /* not lint */
 
@@ -154,7 +154,7 @@
 	format = *argv;
 	gargv = ++argv;
 
-#define SKIP1	"#-+ 0"
+#define SKIP1	"#-+ 0'"
 #define SKIP2	"0123456789"
 	do {
 		/*

Reply via email to