2016-04-18 15:32:24 +02:00
|
|
|
---
|
2021-10-19 11:56:46 +02:00
|
|
|
src/apprentice.c | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
2016-04-18 15:32:24 +02:00
|
|
|
|
2014-06-25 11:07:53 +02:00
|
|
|
--- src/apprentice.c
|
2021-10-19 11:56:46 +02:00
|
|
|
+++ src/apprentice.c 2021-10-19 08:52:01.991343421 +0000
|
|
|
|
@@ -2489,7 +2489,7 @@ check_format_type(const char *ptr, int t
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
h = 0;
|
|
|
|
- while (*ptr && strchr("-.#", *ptr) != NULL)
|
|
|
|
+ while (*ptr && strchr("-.# +'", *ptr) != NULL)
|
2017-05-24 13:14:26 +02:00
|
|
|
ptr++;
|
2016-04-18 15:32:24 +02:00
|
|
|
#define CHECKLEN() do { \
|
2019-02-21 08:19:34 +01:00
|
|
|
for (len = cnt = 0; isdigit(CAST(unsigned char, *ptr)); ptr++, cnt++) \
|