diff options
| author | Joakim Verona | 2013-03-26 16:20:17 +0100 |
|---|---|---|
| committer | Joakim Verona | 2013-03-26 16:20:17 +0100 |
| commit | 6f6db22fc74ffb7fbdd4d805545b7e28cd59f0c8 (patch) | |
| tree | 4a58903b4c3d010e90fc37fe10ea4d9895876d01 /lisp/cedet/srecode/dictionary.el | |
| parent | 62dd123f7c11ddbe156bc0e84dcb7ca1da5368bb (diff) | |
| parent | 48c226c2c2592e31a47559bd1689fcc4354d9479 (diff) | |
| download | emacs-6f6db22fc74ffb7fbdd4d805545b7e28cd59f0c8.tar.gz emacs-6f6db22fc74ffb7fbdd4d805545b7e28cd59f0c8.zip | |
conflict resolve
Diffstat (limited to 'lisp/cedet/srecode/dictionary.el')
| -rw-r--r-- | lisp/cedet/srecode/dictionary.el | 8 |
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 | |||
| 454 | method could return nil, but if it does that, it must insert | 454 | method could return nil, but if it does that, it must insert |
| 455 | the value itself using `princ', or by detecting if the current | 455 | the value itself using `princ', or by detecting if the current |
| 456 | standard out is a buffer, and using `insert'." | 456 | standard 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)) |