move eol:string to General.v
authorAdam Megacz <megacz@cs.berkeley.edu>
Mon, 14 Mar 2011 08:45:36 +0000 (01:45 -0700)
committerAdam Megacz <megacz@cs.berkeley.edu>
Mon, 14 Mar 2011 08:45:36 +0000 (01:45 -0700)
src/General.v
src/NaturalDeductionToLatex.v

index 7af1fc3..457b421 100644 (file)
@@ -629,6 +629,10 @@ CoInductive Fresh A T :=
 Definition map2 {A}{B}(f:A->B)(t:A*A) : (B*B) := ((f (fst t)), (f (snd t))).
 
 
+(* string stuff *)
+Variable eol : string.
+Extract Constant eol  => "'\n':[]".
+
 
 (* the Error monad *)
 Inductive OrError (T:Type) :=
index 34f2894..2d6fb55 100644 (file)
@@ -9,10 +9,6 @@ Require Import Coq.Strings.Ascii.
 Require Import Coq.Strings.String.
 Require Import NaturalDeduction.
 
-(* string stuff *)
-Variable eol : string.
-Extract Constant eol  => "'\n':[]".
-
 Section ToLatex.
 
   Context {Judgment : Type}.