summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@linux-m68k.org>2011-11-26 10:10:36 +0100
committerAndreas Schwab <schwab@linux-m68k.org>2011-11-26 10:10:36 +0100
commit303d001fea65baef0bff8f7ca1196dadf0a38e12 (patch)
tree1f8ec1011b9ac038a15f7d30300c9253cfed7f67
parent509c74bd24fb1b32ccbe09be5ecb724590916e08 (diff)
downloademacs-303d001fea65baef0bff8f7ca1196dadf0a38e12.tar.gz
* grammars/bovine-grammar.el (bovine--grammar-newstyle-unquote):
Avoid warning about old-style backquote.
-rw-r--r--admin/ChangeLog3
-rw-r--r--admin/grammars/bovine-grammar.el2
2 files changed, 4 insertions, 1 deletions
diff --git a/admin/ChangeLog b/admin/ChangeLog
index 34619a759c4..4da85943b7f 100644
--- a/admin/ChangeLog
+++ b/admin/ChangeLog
@@ -1,5 +1,8 @@
2011-11-26 Andreas Schwab <schwab@linux-m68k.org>
+ * grammars/bovine-grammar.el (bovine--grammar-newstyle-unquote):
+ Avoid warning about old-style backquote.
+
* grammars/wisent-grammar.el (auto-mode-alist): Change `$' to `\''
in regexp.
(wisent-make-parsers): Likewise. Quote `.'.
diff --git a/admin/grammars/bovine-grammar.el b/admin/grammars/bovine-grammar.el
index 2201668731d..eda7b42adbd 100644
--- a/admin/grammars/bovine-grammar.el
+++ b/admin/grammars/bovine-grammar.el
@@ -115,7 +115,7 @@ NAME, ALIASCLASS, DEFINITION and ATTRIBUTES."
;; when it is released, but at the moment it might be possible that people
;; are using an older snapshot.
(defvar bovine--grammar-newstyle-unquote
- (equal '(, test) (read ",test")))
+ (equal '(\, test) (read ",test")))
(defun bovine-grammar-expand-form (form quotemode &optional inplace)
"Expand FORM into a new one suitable to the bovine parser.