mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-24 05:47:36 +00:00
* cedet/semantic/lex.el (semantic-lex-make-type-table): Fix transposed args.
This commit is contained in:
parent
d870df218e
commit
fb2c90ac2f
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2013-06-01 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* semantic/lex.el (semantic-lex-make-type-table): Fix transposed args.
|
||||
|
||||
2013-05-24 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* semantic/bovine/grammar.el (bovine-make-parsers):
|
||||
|
|
|
|||
|
|
@ -437,7 +437,7 @@ PROPSPECS must be a list of (TYPE PROPERTY VALUE)."
|
|||
(if default
|
||||
(message
|
||||
"*Warning* default value of <%s> tokens changed to %S, was %S"
|
||||
type default token))
|
||||
type token default))
|
||||
(setq default token)))
|
||||
;; Ensure the default matching spec is the first one.
|
||||
(semantic-lex-type-set type (cons default (nreverse alist))))
|
||||
|
|
|
|||
Loading…
Reference in a new issue