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
|
|
|
|
2022-09-13 22:12:04 +02:00
|
|
|
Index: src/apprentice.c
|
|
|
|
===================================================================
|
|
|
|
--- src/apprentice.c.orig
|
|
|
|
+++ src/apprentice.c
|
2023-01-09 15:41:18 +01:00
|
|
|
@@ -2623,7 +2623,7 @@ check_format_type(const char *ptr, int t
|
2021-10-19 11:56:46 +02:00
|
|
|
}
|
|
|
|
} 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++) \
|