summaryrefslogtreecommitdiff
path: root/base/data/regexes.sprop
diff options
context:
space:
mode:
Diffstat (limited to 'base/data/regexes.sprop')
-rw-r--r--base/data/regexes.sprop21
1 files changed, 0 insertions, 21 deletions
diff --git a/base/data/regexes.sprop b/base/data/regexes.sprop
index fed984a..f1e6787 100644
--- a/base/data/regexes.sprop
+++ b/base/data/regexes.sprop
@@ -34,27 +34,6 @@ fpExponent [eE][+-]?
## NOTE: The incomplete parts are finished by where it is inserted.
fpLeader [\x00-\x20]*[+-]?(?:NaN|Infinity|
-######################################
-# CL format string regular expressions
-######################################
-
-## Matches a format string prefix parameter
-## A prefix parameter is one of
-## * A signed decimal number
-## * A single character preceded by a single quote
-## * The letter V (or v)
-## * The character #
-clFormatPrefix (?:(?:[-+]?\d+|'.|[Vv]|#|%)?)
-
-## Match a format string modifier
-## A modifier is any combination of $, :, * and @; duplicates don't matter though
-clFormatModifier (?:[@$:*]+)
-
-## Matches a directive name.
-## A directive name is either
-## 1) A single, non-whitespace, non-/ character
-## 2) A name enclosed in /'s
-clFormatName (?:(?<name>[\S&&[^/]])|(?:/(?<funcname>[\S&&[^/]]+)/))
##############################################
# Miscellaneous validation regular expressions
##############################################