aboutsummaryrefslogtreecommitdiff
path: root/ide/config_parser.mly
diff options
context:
space:
mode:
authorletouzey2011-03-25 17:35:47 +0000
committerletouzey2011-03-25 17:35:47 +0000
commit27e9777aaadca805dd331bc5f4f6ce40d41fbd70 (patch)
treecd546e38133d1c32d97c0da314a5bdbafdc5322e /ide/config_parser.mly
parentbac77d6d0e58c74e2ad8ca439c48b86df5587206 (diff)
Ide: more reorganisation and cleanup
- Avoid using Util which depends on Compat and hence Camlp4 - Instead, a small Minilib module specific to coqide, which duplicate 5 functions from Util (50 lines) - some dead code removal - the coqlib variable is asked to coqtop - remove obsolete Util.check_for_interrupt This way, coqide only depends on 3 files outside ide/ : Coq_config, Flags, Ide_intf. Makefile and ocamlbuild are adapted accordingly. TODO: how should we signal coqide error, warnings, etc ? For the moment, some Printf.eprintf, some failwith. To uniformize later... git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13930 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/config_parser.mly')
-rw-r--r--ide/config_parser.mly4
1 files changed, 2 insertions, 2 deletions
diff --git a/ide/config_parser.mly b/ide/config_parser.mly
index 8c414d3880..4ab6950b72 100644
--- a/ide/config_parser.mly
+++ b/ide/config_parser.mly
@@ -9,14 +9,14 @@
%{
open Parsing
- open Util
+ open Minilib
%}
%token <string> IDENT STRING
%token EQUAL EOF
-%type <(string list) Util.Stringmap.t> prefs
+%type <(string list) Minilib.Stringmap.t> prefs
%start prefs
%%