aboutsummaryrefslogtreecommitdiffhomepage
path: root/coq
diff options
context:
space:
mode:
authorGravatar Pierre Courtieu <courtieu@lri.fr>2004-04-16 12:30:42 +0000
committerGravatar Pierre Courtieu <courtieu@lri.fr>2004-04-16 12:30:42 +0000
commita40c4b07059f754e63fa29787148cdab22359cb6 (patch)
treee55100008e2a9615910648cede16436d21e36f7c /coq
parent665fcf2a7667f428ca0be6fc31ba14117ab11c68 (diff)
little fix for x-symbols coq.
Diffstat (limited to 'coq')
-rw-r--r--coq/example-x-symbols.v2
-rw-r--r--coq/x-symbol-coq.el6
2 files changed, 4 insertions, 4 deletions
diff --git a/coq/example-x-symbols.v b/coq/example-x-symbols.v
index c3bee71e..21d94b93 100644
--- a/coq/example-x-symbols.v
+++ b/coq/example-x-symbols.v
@@ -17,7 +17,7 @@
-foo_alpha_1_beta_3 (* this should appear like foo_a_1_B_3 where a and B are greek *)
+foo'alpha'1_beta_3 (* this should appear like foo'a'1_B_3 where a and B are greek *)
delta__1 delta^^1 (* greek delta with a sub 1 and the same with super 1 *)
x_{a+b} x^{a+b} (* x with a+b subscripted and then superscripted *)
philosophi (* no greek letter should appear on this line *)
diff --git a/coq/x-symbol-coq.el b/coq/x-symbol-coq.el
index d37d859a..a800e8bd 100644
--- a/coq/x-symbol-coq.el
+++ b/coq/x-symbol-coq.el
@@ -47,11 +47,11 @@ See `x-symbol-header-groups-alist'."
(defvar x-symbol-coq-token-grammar
(x-symbol-make-grammar
- :encode-spec '(((id . "['a-zA-Z0-9]") (op . "[]><=\\/~&+-*%!{}:-]")) .
- ((id . "['a-zA-Z0-9]") (op . "[]><=\\/~&+-*%!{}:-]")))
+ :encode-spec '(((id . "[a-zA-Z0-9]") (op . "[]><=\\/~&+-*%!{}:-]")) .
+ ((id . "[a-zA-Z0-9]") (op . "[]><=\\/~&+-*%!{}:-]")))
:decode-spec nil
;; decode-spec seems to go with highlighting encoding??
- :decode-regexp "\\(['a-zA-Z0-9]+\\)\\|\\([]><=\\/~&+-*%!{}:-]+\\)"
+ :decode-regexp "\\([a-zA-Z0-9]+\\)\\|\\([]><=\\/~&+-*%!{}:-]+\\)"
:token-list #'x-symbol-coq-default-token-list))
;(defvar x-symbol-coq-input-token-grammar