aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet/srecode/table.el
diff options
context:
space:
mode:
authorStefan Monnier2025-04-06 17:25:43 -0400
committerStefan Monnier2025-04-06 17:25:43 -0400
commit3723aabe504a95bf6c5a8aa9ce34d967ca37a159 (patch)
treeb32169b6876595c8a08ff16bbb3caf97c8c00b74 /lisp/cedet/srecode/table.el
parentba13e7de32d08028ab7bffdd73dab271a95ea453 (diff)
downloademacs-scratch/cedet-object-name.tar.gz
emacs-scratch/cedet-object-name.zip
cedet: Fix some remaining uses of obsolete object-name argscratch/cedet-object-name
* lisp/cedet/srecode/compile.el (srecode-compile-templates): Delete obsolete object-name argument to `srecode-compile-state` and `srecode-dictionary-compound-variable` constructors. (srecode-compile-one-template-tag, srecode-compile-inserter): Pass object name via explicit `:object-name` arg to `srecode-template`, `srecode-template-inserter-variable`, and children of `srecode-template`. * lisp/cedet/srecode/cpp.el (srecode-semantic-apply-tag-to-dict) (srecode-c-apply-templates): Delete obsolete object-name argument to `srecode-semantic-tag` constructors. * lisp/cedet/srecode/dictionary.el (srecode-dictionary-add-entries) (srecode-compound-toString): Delete obsolete object-name argument to `srecode-dictionary-compound-variable` and `srecode-field` constructors. * lisp/cedet/srecode/insert.el (srecode-insert-method-field): Delete obsolete object-name argument to `srecode-field-value` constructor. (srecode-parse-input): Pass object name via explicit `:object-name` arg to `srecode-template`. * lisp/cedet/srecode/semantic.el (srecode-semantic-handle-:tag) (srecode-semantic-insert-tag, srecode-semantic-apply-tag-to-dict-default): Delete obsolete object-name argument to `srecode-semantic-tag` constructors. * lisp/cedet/srecode/table.el (srecode-mode-table-new): Delete obsolete object-name argument to `srecode-template-table` constructor. * lisp/emacs-lisp/eieio-base.el (make-instance): Emit warning unconditionally.
Diffstat (limited to 'lisp/cedet/srecode/table.el')
-rw-r--r--lisp/cedet/srecode/table.el1
1 files changed, 0 insertions, 1 deletions
diff --git a/lisp/cedet/srecode/table.el b/lisp/cedet/srecode/table.el
index ba87c0a01d2..6f98038b614 100644
--- a/lisp/cedet/srecode/table.el
+++ b/lisp/cedet/srecode/table.el
@@ -180,7 +180,6 @@ INIT are the initialization parameters for the new template table."
180 (old (srecode-mode-table-find mt file)) 180 (old (srecode-mode-table-find mt file))
181 (attr (file-attributes file)) 181 (attr (file-attributes file))
182 (new (apply #'srecode-template-table 182 (new (apply #'srecode-template-table
183 (file-name-nondirectory file)
184 :file file 183 :file file
185 :filesize (file-attribute-size attr) 184 :filesize (file-attribute-size attr)
186 :filedate (file-attribute-modification-time attr) 185 :filedate (file-attribute-modification-time attr)