aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2015-05-10 22:08:07 -0400
committerStefan Monnier2015-05-10 22:08:07 -0400
commit70ac376aa5b8dd687f1735605ea863448e09ee47 (patch)
tree7f349438c73223175d302472c9670d5ca849c918
parent4b41540b424468aeca87b9b47ffda2be25c5dac4 (diff)
downloademacs-70ac376aa5b8dd687f1735605ea863448e09ee47.tar.gz
emacs-70ac376aa5b8dd687f1735605ea863448e09ee47.zip
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.
-rw-r--r--lisp/cedet/srecode/dictionary.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/cedet/srecode/dictionary.el b/lisp/cedet/srecode/dictionary.el
index 97d3310a2ae..27e730f9d6a 100644
--- a/lisp/cedet/srecode/dictionary.el
+++ b/lisp/cedet/srecode/dictionary.el
@@ -195,8 +195,8 @@ associated with a buffer or parent."
195 initfrombuff t))) 195 initfrombuff t)))
196 196
197 ;; Create the new dictionary object. 197 ;; Create the new dictionary object.
198 (let ((dict (srecode-dictionary 198 (let ((dict (make-instance
199 major-mode 199 'srecode-dictionary
200 :buffer buffer 200 :buffer buffer
201 :parent parent 201 :parent parent
202 :namehash (make-hash-table :test 'equal 202 :namehash (make-hash-table :test 'equal