diff options
| author | Stefan Monnier | 2015-05-10 22:08:07 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2015-05-10 22:08:07 -0400 |
| commit | 70ac376aa5b8dd687f1735605ea863448e09ee47 (patch) | |
| tree | 7f349438c73223175d302472c9670d5ca849c918 | |
| parent | 4b41540b424468aeca87b9b47ffda2be25c5dac4 (diff) | |
| download | emacs-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.el | 4 |
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 |