From: Johannes Sixt <j6t@xxxxxxxx> Since C++17, the single-quote can be used as digit separator: 3.141'592'654 1'000'000 0xdead'beaf Make it known to the word regex of the cpp driver, so that numbers are not split into separate tokens at the single-quotes. Signed-off-by: Johannes Sixt <j6t@xxxxxxxx> --- t/t4034/cpp/expect | 10 +++++----- t/t4034/cpp/post | 8 ++++---- t/t4034/cpp/pre | 8 ++++---- userdiff.c | 6 +++--- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/t/t4034/cpp/expect b/t/t4034/cpp/expect index 46c9460a968..a3a234f5461 100644 --- a/t/t4034/cpp/expect +++ b/t/t4034/cpp/expect @@ -1,5 +1,5 @@ <BOLD>diff --git a/pre b/post<RESET> -<BOLD>index 1229cdb..3feae6f 100644<RESET> +<BOLD>index 60f3640..f6fbf7b 100644<RESET> <BOLD>--- a/pre<RESET> <BOLD>+++ b/post<RESET> <CYAN>@@ -1,30 +1,30 @@<RESET> @@ -7,15 +7,15 @@ Foo() : x(0<RED>&&1<RESET><GREEN>&42<RESET>) { <RED>foo0<RESET><GREEN>bar<RESET> cout<<"Hello World<RED>!<RESET><GREEN>?<RESET>\n"<<endl; <GREEN>(<RESET>1 <RED>-<RESET><GREEN>+<RESET>1e10 0xabcdef<GREEN>)<RESET> '<RED>x<RESET><GREEN>y<RESET>' // long double<RESET> -<RED>3.141592653e-10l<RESET><GREEN>3.141592654e+10l<RESET> +<RED>3.141'592'653e-10l<RESET><GREEN>3.141'592'654e+10l<RESET> // float<RESET> <RED>120E5f<RESET><GREEN>120E6f<RESET> // hex<RESET> -<RED>0xdeadbeaf<RESET><GREEN>0xdeadBeaf<RESET>+<RED>8ULL<RESET><GREEN>7ULL<RESET> +<RED>0xdead'beaf<RESET><GREEN>0xdead'Beaf<RESET>+<RED>8ULL<RESET><GREEN>7ULL<RESET> // octal<RESET> -<RED>01234567<RESET><GREEN>01234560<RESET> +<RED>0123'4567<RESET><GREEN>0123'4560<RESET> // binary<RESET> -<RED>0b1000<RESET><GREEN>0b1100<RESET>+e1 +<RED>0b10'00<RESET><GREEN>0b11'00<RESET>+e1 // expression<RESET> 1.5-e+<RED>2<RESET><GREEN>3<RESET>+f // another one<RESET> diff --git a/t/t4034/cpp/post b/t/t4034/cpp/post index 3feae6f430f..f6fbf7bc04c 100644 --- a/t/t4034/cpp/post +++ b/t/t4034/cpp/post @@ -2,15 +2,15 @@ Foo() : x(0&42) { bar(x.Find); } cout<<"Hello World?\n"<<endl; (1 +1e10 0xabcdef) 'y' // long double -3.141592654e+10l +3.141'592'654e+10l // float 120E6f // hex -0xdeadBeaf+7ULL +0xdead'Beaf+7ULL // octal -01234560 +0123'4560 // binary -0b1100+e1 +0b11'00+e1 // expression 1.5-e+3+f // another one diff --git a/t/t4034/cpp/pre b/t/t4034/cpp/pre index 1229cdb59d1..60f3640d773 100644 --- a/t/t4034/cpp/pre +++ b/t/t4034/cpp/pre @@ -2,15 +2,15 @@ Foo():x(0&&1){ foo0( x.find); } cout<<"Hello World!\n"<<endl; 1 -1e10 0xabcdef 'x' // long double -3.141592653e-10l +3.141'592'653e-10l // float 120E5f // hex -0xdeadbeaf+8ULL +0xdead'beaf+8ULL // octal -01234567 +0123'4567 // binary -0b1000+e1 +0b10'00+e1 // expression 1.5-e+2+f // another one diff --git a/userdiff.c b/userdiff.c index ce2a9230703..1b640c7df79 100644 --- a/userdiff.c +++ b/userdiff.c @@ -57,11 +57,11 @@ PATTERNS("cpp", /* identifiers and keywords */ "[a-zA-Z_][a-zA-Z0-9_]*" /* decimal and octal integers as well as floatingpoint numbers */ - "|[0-9][0-9.]*([Ee][-+]?[0-9]+)?[fFlLuU]*" + "|[0-9][0-9.']*([Ee][-+]?[0-9]+)?[fFlLuU]*" /* hexadecimal and binary integers */ - "|0[xXbB][0-9a-fA-F]+[lLuU]*" + "|0[xXbB][0-9a-fA-F']+[lLuU]*" /* floatingpoint numbers that begin with a decimal point */ - "|\\.[0-9]+([Ee][-+]?[0-9]+)?[fFlL]?" + "|\\.[0-9']+([Ee][-+]?[0-9]+)?[fFlL]?" "|[-+*/<>%&^|=!]=|--|\\+\\+|<<=?|>>=?|&&|\\|\\||::|->\\*?|\\.\\*"), PATTERNS("csharp", /* Keywords */ -- gitgitgadget