Skip to Content.
Sympa Menu

coq-club - [Coq-Club] [MERGE] Fix notation for ~x in theories/Unicode/Utf8.v.

coq-club AT inria.fr

Subject: The Coq mailing list

List archive

[Coq-Club] [MERGE] Fix notation for ~x in theories/Unicode/Utf8.v.


chronological Thread 
  • From: Samuel Bronson <naesten AT gmail.com>
  • To: coq-club AT pauillac.inria.fr
  • Subject: [Coq-Club] [MERGE] Fix notation for ~x in theories/Unicode/Utf8.v.
  • Date: Thu, 27 Aug 2009 14:58:51 -0400
  • List-archive: <http://pauillac.inria.fr/pipermail/coq-club/>


Fix notation for ~x in theories/Unicode/Utf8.v.

Before this change, it had used:
  U+2309 RIGHT CEILING ("⌉")
after this change, it uses:
  U+00AC NOT SIGN ("¬")

Index: theories/Unicode/Utf8.v
===================================================================
--- theories/Unicode/Utf8.v	(revision 10918)
+++ theories/Unicode/Utf8.v	(working copy)
@@ -36,7 +36,7 @@
 Notation "x ∧ y" := (x /\ y) (at level 80, right associativity) : type_scope.
 Notation "x → y" := (x -> y) (at level 90, right associativity): type_scope.
 Notation "x ↔ y" := (x <-> y) (at level 95, no associativity): type_scope.
-Notation "⌉ x" := (~x) (at level 75, right associativity) : type_scope.
+Notation "¬ x" := (~x) (at level 75, right associativity) : type_scope.
 Notation "x ≠ y" := (x <> y) (at level 70) : type_scope.
 
 (* Abstraction *)




Archive powered by MhonArc 2.6.16.

Top of Page