* lisp/emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.

(Bug#8934)
This commit is contained in:
Andreas Schwab 2011-06-26 10:43:52 +02:00
parent 2db18f3ffa
commit bc3122541b
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2011-06-26 Andreas Schwab <schwab@linux-m68k.org>
* emacs-lisp/smie.el (smie-bnf->prec2): Fix last change.
(Bug#8934)
2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
* net/network-stream.el (network-stream-open-starttls): Use

View file

@ -238,9 +238,9 @@ one of those elements share the same precedence level and associativity."
(pushnew (car shr) last-ops)
(pushnew (car shr) last-nts)
(when (consp (cdr shr))
(when (member (cadr rhs) nts)
(when (member (cadr shr) nts)
(error "Adjacent non-terminals: %s %s"
(cadr rhs) (car rhs)))
(cadr shr) (car shr)))
(pushnew (cadr shr) last-ops)))))
(push (cons nt first-ops) first-ops-table)
(push (cons nt last-ops) last-ops-table)