diff options
author | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2009-10-25 07:36:43 +0000 |
---|---|---|
committer | herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7> | 2009-10-25 07:36:43 +0000 |
commit | b02da518c51456b003c61f9775050fbfe6090629 (patch) | |
tree | fd9d603b8829a6dfa1190ae111e84b136be59060 /library | |
parent | 28623d59a6381c7fb1c198ddca2dc382ba5c0e4c (diff) |
Improved the treatment of Local/Global options (noneffective Local on
Implicit Arguments, Arguments Scope and Coercion fixed, noneffective
Global in sections for Hints and Notation detected).
Misc. improvements (comments + interpretation of Hint Constructors +
dev printer for hint_db).
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@12411 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'library')
-rw-r--r-- | library/impargs.ml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/impargs.ml b/library/impargs.ml index 1edac69aa..dec961793 100644 --- a/library/impargs.ml +++ b/library/impargs.ml @@ -521,6 +521,9 @@ let rebuild_implicits (req,l) = let l' = merge_impls auto m in [ref,l'] in (req,l') +let classify_implicits (req,_ as obj) = + if req = ImplLocal then None else Some obj + let (inImplicits, _) = declare_object {(default_object "IMPLICITS") with cache_function = cache_implicits; |