diff options
| author | notin | 2006-06-08 09:12:48 +0000 |
|---|---|---|
| committer | notin | 2006-06-08 09:12:48 +0000 |
| commit | 1d6afe0d2fd43f23f0da27abbe32a392c1d21d56 (patch) | |
| tree | 023089dda5c948d8a15c4c51933ef81f6f974ca3 | |
| parent | 4f3a7b740b7969c44a75c5620bf118e43c5d8b62 (diff) | |
Correction du bug #728(1086) (ordre de sauvegarde des tactiques dans coqide)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@8920 85f007b7-540e-0410-9357-904b9bb8a0f7
| -rw-r--r-- | ide/preferences.ml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ide/preferences.ml b/ide/preferences.ml index ae038ef66e..843c98aec0 100644 --- a/ide/preferences.ml +++ b/ide/preferences.ml @@ -180,8 +180,7 @@ let save_pref () = add "encoding_use_utf8" [string_of_bool p.encoding_use_utf8] ++ add "encoding_manual" [p.encoding_manual] ++ - add "automatic_tactics" - (List.rev p.automatic_tactics) ++ + add "automatic_tactics" p.automatic_tactics ++ add "cmd_print" [p.cmd_print] ++ add "modifier_for_navigation" (List.map mod_to_str p.modifier_for_navigation) ++ |
