~ubuntu-branches/ubuntu/wily/coq-doc/wily

« back to all changes in this revision

Viewing changes to contrib/subtac/subtac_command.mli

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu, Stéphane Glondu, Samuel Mimram
  • Date: 2010-01-07 22:50:39 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100107225039-n3cq82589u0qt0s2
Tags: 8.2pl1-1
[ Stéphane Glondu ]
* New upstream release (Closes: #563669)
  - remove patches
* Packaging overhaul:
  - use git, advertise it in Vcs-* fields of debian/control
  - use debhelper 7 and dh with override
  - use source format 3.0 (quilt)
* debian/control:
  - set Maintainer to d-o-m, set Uploaders to Sam and myself
  - add Homepage field
  - bump Standards-Version to 3.8.3
* Register PDF documentation into doc-base
* Add debian/watch
* Update debian/copyright

[ Samuel Mimram ]
* Change coq-doc's description to mention that it provides documentation in
  pdf format, not postscript, closes: #543545.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
open Pretyping
 
2
open Evd
 
3
open Environ
 
4
open Term
 
5
open Topconstr
 
6
open Names
 
7
open Libnames
 
8
open Pp
 
9
open Vernacexpr
 
10
open Constrintern
 
11
 
 
12
val interp_gen :
 
13
  typing_constraint ->
 
14
  evar_defs ref ->
 
15
  env ->
 
16
  ?impls:full_implicits_env ->
 
17
  ?allow_patvar:bool ->
 
18
  ?ltacvars:ltac_sign ->
 
19
  constr_expr -> constr
 
20
val interp_constr :
 
21
  evar_defs ref ->
 
22
  env -> constr_expr -> constr
 
23
val interp_type_evars :
 
24
  evar_defs ref ->
 
25
  env ->
 
26
  ?impls:full_implicits_env ->
 
27
  constr_expr -> constr
 
28
val interp_casted_constr_evars :
 
29
  evar_defs ref ->
 
30
  env ->
 
31
  ?impls:full_implicits_env ->
 
32
  constr_expr -> types -> constr
 
33
val interp_open_constr :
 
34
  evar_defs ref -> env -> constr_expr -> constr
 
35
val interp_constr_judgment :
 
36
  evar_defs ref ->
 
37
  env ->
 
38
  constr_expr -> unsafe_judgment
 
39
val list_chop_hd : int -> 'a list -> 'a list * 'a * 'a list
 
40
 
 
41
val interp_binder :     Evd.evar_defs ref ->
 
42
    Environ.env -> Names.name -> Topconstr.constr_expr -> Term.constr
 
43
 
 
44
 
 
45
 
 
46
val build_recursive :
 
47
  (fixpoint_expr * decl_notation) list -> bool -> unit
 
48
 
 
49
val build_corecursive :
 
50
  (cofixpoint_expr * decl_notation) list -> bool -> unit