CEDET (srecode-create-dictionary): Avoid obsolete object name

* lisp/cedet/srecode/dictionary.el (srecode-create-dictionary):
Don't use a symbol as an object name.  Reported by Pierre Lorenzon.
This commit is contained in:
Stefan Monnier 2015-05-10 22:08:07 -04:00
parent 4b41540b42
commit 70ac376aa5

View file

@ -195,8 +195,8 @@ associated with a buffer or parent."
initfrombuff t)))
;; Create the new dictionary object.
(let ((dict (srecode-dictionary
major-mode
(let ((dict (make-instance
'srecode-dictionary
:buffer buffer
:parent parent
:namehash (make-hash-table :test 'equal