aboutsummaryrefslogtreecommitdiff
path: root/plugins/syntax/numeral.mli
diff options
context:
space:
mode:
authorPierre Roux2020-09-03 13:26:00 +0200
committerPierre Roux2020-11-05 00:20:19 +0100
commit3b766fd8859b692e3e93cf83bf87d393e32c572e (patch)
treec241d8dcd7a8e725f06013558dfb66946dec5e87 /plugins/syntax/numeral.mli
parente728a1ef0f8b5fdc4b1815a7d0349c67db15f9b4 (diff)
Merge numeral and string notation plugins
Diffstat (limited to 'plugins/syntax/numeral.mli')
-rw-r--r--plugins/syntax/numeral.mli26
1 files changed, 0 insertions, 26 deletions
diff --git a/plugins/syntax/numeral.mli b/plugins/syntax/numeral.mli
deleted file mode 100644
index 5a13d1068b..0000000000
--- a/plugins/syntax/numeral.mli
+++ /dev/null
@@ -1,26 +0,0 @@
-(************************************************************************)
-(* * The Coq Proof Assistant / The Coq Development Team *)
-(* v * Copyright INRIA, CNRS and contributors *)
-(* <O___,, * (see version control and CREDITS file for authors & dates) *)
-(* \VV/ **************************************************************)
-(* // * This file is distributed under the terms of the *)
-(* * GNU Lesser General Public License Version 2.1 *)
-(* * (see LICENSE file for the text of the license) *)
-(************************************************************************)
-
-open Libnames
-open Vernacexpr
-open Notation
-
-(** * Number notation *)
-
-type number_string_via = qualid * (bool * qualid * qualid) list
-type number_option =
- | After of numnot_option
- | Via of number_string_via
-
-val vernac_number_notation : locality_flag ->
- qualid ->
- qualid -> qualid ->
- number_option list ->
- Notation_term.scope_name -> unit