aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-03-04 16:19:49 +0000
committerGravatar letouzey <letouzey@85f007b7-540e-0410-9357-904b9bb8a0f7>2011-03-04 16:19:49 +0000
commit8eaf2c13e24c4e9fb328b44b10ef48a4465d9838 (patch)
tree706dbb51ae8ae612351901af06deb449699195c5
parent66d0087acb9457cd6a390ee33e68925a24fbdae7 (diff)
CHANGES: update of syntax for annotations of functor application
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13871 85f007b7-540e-0410-9357-904b9bb8a0f7
-rw-r--r--CHANGES6
1 files changed, 3 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 3a6863138..8a647fb41 100644
--- a/CHANGES
+++ b/CHANGES
@@ -30,9 +30,9 @@ Vernacular commands
Module System
- The inlining done during application of functors can now be controlled
- more precisely. In addition to the "!F G" syntax preventing any inlining,
- we can now use a priority level to select parameters to inline :
- "<30>F X" means "only inline in F the parameters whose levels are <= 30".
+ more precisely, by the annotations (no inline) or (inline at level XX).
+ With the latter annotation, only functor parameters whose levels
+ are lower or equal than XX will be inlined.
The level of a parameter can be fixed by "Parameter Inline(30) foo".
When levels aren't given, the default value is 100. One can also use
the flag "Set Inline Level ..." to set a level. TODO: DOC!