diff options
Diffstat (limited to 'lisp/cedet/srecode/semantic.el')
| -rw-r--r-- | lisp/cedet/srecode/semantic.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/cedet/srecode/semantic.el b/lisp/cedet/srecode/semantic.el index 7e24a320483..9500ca35979 100644 --- a/lisp/cedet/srecode/semantic.el +++ b/lisp/cedet/srecode/semantic.el | |||
| @@ -63,9 +63,9 @@ If FUNCTION is non-nil, then FUNCTION is somehow applied to an | |||
| 63 | aspect of the compound value." | 63 | aspect of the compound value." |
| 64 | (if (not function) | 64 | (if (not function) |
| 65 | ;; Just format it in some handy dandy way. | 65 | ;; Just format it in some handy dandy way. |
| 66 | (semantic-format-tag-prototype (oref cp :prime)) | 66 | (semantic-format-tag-prototype (slot-value cp 'prime)) |
| 67 | ;; Otherwise, apply the function to the tag itself. | 67 | ;; Otherwise, apply the function to the tag itself. |
| 68 | (funcall function (oref cp :prime)) | 68 | (funcall function (slot-value cp 'prime)) |
| 69 | )) | 69 | )) |
| 70 | 70 | ||
| 71 | 71 | ||
| @@ -106,7 +106,7 @@ variable default values, and other things." | |||
| 106 | (srecode-dictionary-set-value dict "TAG" tagobj) | 106 | (srecode-dictionary-set-value dict "TAG" tagobj) |
| 107 | 107 | ||
| 108 | ;; Pull out the tag for the individual pieces. | 108 | ;; Pull out the tag for the individual pieces. |
| 109 | (let ((tag (oref tagobj :prime))) | 109 | (let ((tag (slot-value tagobj 'prime))) |
| 110 | 110 | ||
| 111 | (srecode-dictionary-set-value dict "NAME" (semantic-tag-name tag)) | 111 | (srecode-dictionary-set-value dict "NAME" (semantic-tag-name tag)) |
| 112 | (srecode-dictionary-set-value dict "TYPE" (semantic-format-tag-type tag nil)) | 112 | (srecode-dictionary-set-value dict "TYPE" (semantic-format-tag-type tag nil)) |