diff options
Diffstat (limited to 'lisp/cedet/srecode/semantic.el')
| -rw-r--r-- | lisp/cedet/srecode/semantic.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lisp/cedet/srecode/semantic.el b/lisp/cedet/srecode/semantic.el index bfacda54557..1db041cdfd0 100644 --- a/lisp/cedet/srecode/semantic.el +++ b/lisp/cedet/srecode/semantic.el | |||
| @@ -129,8 +129,7 @@ variable default values, and other things." | |||
| 129 | larg nil nil))) | 129 | larg nil nil))) |
| 130 | ;; Apply the sub-argument to the subdictionary. | 130 | ;; Apply the sub-argument to the subdictionary. |
| 131 | (srecode-semantic-apply-tag-to-dict | 131 | (srecode-semantic-apply-tag-to-dict |
| 132 | (srecode-semantic-tag (semantic-tag-name larg) | 132 | (srecode-semantic-tag :prime larg) |
| 133 | :prime larg) | ||
| 134 | subdict) | 133 | subdict) |
| 135 | ) | 134 | ) |
| 136 | ;; Next! | 135 | ;; Next! |
| @@ -203,8 +202,7 @@ variable default values, and other things." | |||
| 203 | (when (not tag) | 202 | (when (not tag) |
| 204 | (error "No tag for current template. Use the semantic kill-ring")) | 203 | (error "No tag for current template. Use the semantic kill-ring")) |
| 205 | (srecode-semantic-apply-tag-to-dict | 204 | (srecode-semantic-apply-tag-to-dict |
| 206 | (srecode-semantic-tag (semantic-tag-name tag) | 205 | (srecode-semantic-tag :prime tag) |
| 207 | :prime tag) | ||
| 208 | dict))) | 206 | dict))) |
| 209 | 207 | ||
| 210 | ;;; :tagtype ARGUMENT HANDLING | 208 | ;;; :tagtype ARGUMENT HANDLING |
| @@ -394,7 +392,7 @@ as `function' will leave point where code might be inserted." | |||
| 394 | ;; Resolve TAG into the dictionary. We may have a :tag arg | 392 | ;; Resolve TAG into the dictionary. We may have a :tag arg |
| 395 | ;; from the macro such that we don't need to do this. | 393 | ;; from the macro such that we don't need to do this. |
| 396 | (when (not (srecode-dictionary-lookup-name dict "TAG")) | 394 | (when (not (srecode-dictionary-lookup-name dict "TAG")) |
| 397 | (let ((tagobj (srecode-semantic-tag (semantic-tag-name tag) :prime tag)) | 395 | (let ((tagobj (srecode-semantic-tag :prime tag)) |
| 398 | ) | 396 | ) |
| 399 | (srecode-semantic-apply-tag-to-dict tagobj dict))) | 397 | (srecode-semantic-apply-tag-to-dict tagobj dict))) |
| 400 | 398 | ||