summaryrefslogtreecommitdiff
path: root/userdiff.c
diff options
context:
space:
mode:
authorJohannes Sixt <j6t@kdbg.org>2014-03-21 21:07:14 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-03-21 21:48:07 (GMT)
commitabf8f9860248d8c213600974742f18dadaa8fbb5 (patch)
tree8a1138dc96032616f84dc6152355132f4f201829 /userdiff.c
parent407e07f2a6f55e605fda9e90cb622887269f68b5 (diff)
downloadgit-abf8f9860248d8c213600974742f18dadaa8fbb5.zip
git-abf8f9860248d8c213600974742f18dadaa8fbb5.tar.gz
git-abf8f9860248d8c213600974742f18dadaa8fbb5.tar.bz2
userdiff: support unsigned and long long suffixes of integer constants
Do not split constants such as 123U, 456ll, 789UL at the first U or second L. Signed-off-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'userdiff.c')
-rw-r--r--userdiff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/userdiff.c b/userdiff.c
index 434535b..8830417 100644
--- a/userdiff.c
+++ b/userdiff.c
@@ -132,7 +132,7 @@ PATTERNS("cpp",
"^((struct|class|enum)[^;]*)$",
/* -- */
"[a-zA-Z_][a-zA-Z0-9_]*"
- "|[-+0-9.e]+[fFlL]?|0[xXbB]?[0-9a-fA-F]+[lL]?"
+ "|[-+0-9.e]+[fFlL]?|0[xXbB]?[0-9a-fA-F]+[lLuU]*"
"|[-+*/<>%&^|=!]=|--|\\+\\+|<<=?|>>=?|&&|\\|\\||::|->\\*?|\\.\\*"),
PATTERNS("csharp",
/* Keywords */