aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet/srecode/cpp.el
diff options
context:
space:
mode:
authorDavid Engster2017-01-25 23:12:00 +0100
committerDavid Engster2017-01-25 23:14:29 +0100
commitd2a57bdfec4758cf7607e7976106cd1bfee5f6d7 (patch)
treed4f4948e6a2247d9c4270c207d9afeef7928e2b1 /lisp/cedet/srecode/cpp.el
parent9c2feacc8558a8cc8e6d89ecd8473f9a3524d9ef (diff)
downloademacs-scratch/last-cedet-merge.tar.gz
emacs-scratch/last-cedet-merge.zip
CEDET: Fix "unknown slot [...]" warningsscratch/last-cedet-merge
Replace (oref OBJECT :SLOT) with (slot-value OBJECT 'SLOT). TODO: ChangeLog
Diffstat (limited to 'lisp/cedet/srecode/cpp.el')
-rw-r--r--lisp/cedet/srecode/cpp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cedet/srecode/cpp.el b/lisp/cedet/srecode/cpp.el
index 8f9c0832844..9f675fcaf9e 100644
--- a/lisp/cedet/srecode/cpp.el
+++ b/lisp/cedet/srecode/cpp.el
@@ -122,7 +122,7 @@ specified in a C file."
122 (srecode-semantic-apply-tag-to-dict-default tag-wrapper dict) 122 (srecode-semantic-apply-tag-to-dict-default tag-wrapper dict)
123 123
124 ;; Pull out the tag for the individual pieces. 124 ;; Pull out the tag for the individual pieces.
125 (let* ((tag (oref tag-wrapper :prime)) 125 (let* ((tag (slot-value tag-wrapper 'prime))
126 (class (semantic-tag-class tag))) 126 (class (semantic-tag-class tag)))
127 127
128 ;; Add additional information based on the class of the tag. 128 ;; Add additional information based on the class of the tag.