aboutsummaryrefslogtreecommitdiffhomepage
path: root/library
diff options
context:
space:
mode:
Diffstat (limited to 'library')
-rw-r--r--library/goptions.ml2
-rw-r--r--library/goptions.mli1
2 files changed, 3 insertions, 0 deletions
diff --git a/library/goptions.ml b/library/goptions.ml
index 4eb8f2402..4be15569e 100644
--- a/library/goptions.ml
+++ b/library/goptions.ml
@@ -25,10 +25,12 @@ open Mod_subst
type option_name =
| PrimaryTable of string
| SecondaryTable of string * string
+ | TertiaryTable of string * string * string
let nickname = function
| PrimaryTable s -> s
| SecondaryTable (s1,s2) -> s1^" "^s2
+ | TertiaryTable (s1,s2,s3) -> s1^" "^s2^" "^s3
let error_undeclared_key key =
error ((nickname key)^": no table or option of this type")
diff --git a/library/goptions.mli b/library/goptions.mli
index 4709fc1c8..53f6a6cdb 100644
--- a/library/goptions.mli
+++ b/library/goptions.mli
@@ -68,6 +68,7 @@ open Mod_subst
type option_name =
| PrimaryTable of string
| SecondaryTable of string * string
+ | TertiaryTable of string * string * string
val error_undeclared_key : option_name -> 'a