aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/preferences.mli
diff options
context:
space:
mode:
authorGravatar pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-04-14 17:24:16 +0000
committerGravatar pboutill <pboutill@85f007b7-540e-0410-9357-904b9bb8a0f7>2012-04-14 17:24:16 +0000
commitc9e196d6481a95d2e65778f0900c9b19fef44f76 (patch)
tree16b8bbb653240a91b6bc6b2c333dee9bb630bf5f /ide/preferences.mli
parent08b7a19aff875b57e54fca2d4100a4016a092c58 (diff)
Coqide input encoding preference is an algebraic type.
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@15174 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'ide/preferences.mli')
-rw-r--r--ide/preferences.mli5
1 files changed, 2 insertions, 3 deletions
diff --git a/ide/preferences.mli b/ide/preferences.mli
index 292e43972..d4eb370f3 100644
--- a/ide/preferences.mli
+++ b/ide/preferences.mli
@@ -7,6 +7,7 @@
(************************************************************************)
type project_behavior = Ignore_args | Append_args | Subst_args
+type inputenc = Elocale | Eutf8 | Emanual of string
type pref =
{
@@ -25,9 +26,7 @@ type pref =
mutable read_project : project_behavior;
mutable project_file_name : string;
- mutable encoding_use_locale : bool;
- mutable encoding_use_utf8 : bool;
- mutable encoding_manual : string;
+ mutable encoding : inputenc;
mutable automatic_tactics : string list;
mutable cmd_print : string;