aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet/srecode/dictionary.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/cedet/srecode/dictionary.el')
-rw-r--r--lisp/cedet/srecode/dictionary.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cedet/srecode/dictionary.el b/lisp/cedet/srecode/dictionary.el
index bac05666726..bbc791f09d8 100644
--- a/lisp/cedet/srecode/dictionary.el
+++ b/lisp/cedet/srecode/dictionary.el
@@ -175,7 +175,7 @@ associated with a buffer or parent."
175 ((srecode-dictionary-child-p buffer-or-parent) 175 ((srecode-dictionary-child-p buffer-or-parent)
176 (setq parent buffer-or-parent 176 (setq parent buffer-or-parent
177 buffer (oref buffer-or-parent buffer) 177 buffer (oref buffer-or-parent buffer)
178 origin (concat (object-name buffer-or-parent) " in " 178 origin (concat (eieio-object-name buffer-or-parent) " in "
179 (if buffer (buffer-name buffer) 179 (if buffer (buffer-name buffer)
180 "no buffer"))) 180 "no buffer")))
181 (when buffer 181 (when buffer
@@ -454,12 +454,12 @@ If you subclass `srecode-dictionary-compound-value' then this
454method could return nil, but if it does that, it must insert 454method could return nil, but if it does that, it must insert
455the value itself using `princ', or by detecting if the current 455the value itself using `princ', or by detecting if the current
456standard out is a buffer, and using `insert'." 456standard out is a buffer, and using `insert'."
457 (object-name cp)) 457 (eieio-object-name cp))
458 458
459(defmethod srecode-dump ((cp srecode-dictionary-compound-value) 459(defmethod srecode-dump ((cp srecode-dictionary-compound-value)
460 &optional indent) 460 &optional indent)
461 "Display information about this compound value." 461 "Display information about this compound value."
462 (princ (object-name cp)) 462 (princ (eieio-object-name cp))
463 ) 463 )
464 464
465(defmethod srecode-compound-toString ((cp srecode-dictionary-compound-variable) 465(defmethod srecode-compound-toString ((cp srecode-dictionary-compound-variable)
@@ -654,7 +654,7 @@ STATE is the current compiler state."
654 4))) 654 4)))
655 (while entry 655 (while entry
656 (princ " --> SUBDICTIONARY ") 656 (princ " --> SUBDICTIONARY ")
657 (princ (object-name dict)) 657 (princ (eieio-object-name dict))
658 (princ "\n") 658 (princ "\n")
659 (srecode-dump (car entry) newindent) 659 (srecode-dump (car entry) newindent)
660 (setq entry (cdr entry)) 660 (setq entry (cdr entry))