blob: fa046d968f9aa8d8389b7a77221849d81e8240a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- **Changed:**
Boolean attributes are now specified using key/value pairs, that is
to say ``attr={yes,no}``. If the value is missing, the default is
``on``. Old syntax is still supported, but produces the
``deprecated-attribute-syntax`` warning.
Attributes deprecated are ``universes(monomorphic)``,
``universes(notemplate)``, ``universes(noncumulative)``, which are
replaced by the corresponding ``universes(polymorphic=no)`` etc...
Attributes :attr:`program` and :attr:`canonical` are also affected,
with the syntax ``attr(false)`` being deprecated in favor of
``attr=no``.
(`#13312 <https://github.com/coq/coq/pull/13312>`_,
by Emilio Jesus Gallego Arias).
|