From fa84466d79788b0604ca66be7188d94d4b3d5a2c Mon Sep 17 00:00:00 2001 From: Eric Ludlam Date: Mon, 26 Jan 2015 18:12:12 -0500 Subject: [PATCH] semantic: Fix current symbol info * lisp/cedet/semantic/bovine/c.el (semantic-idle-summary-current-symbol-info): The macro symbol value might be a string, so support that. --- lisp/cedet/semantic/bovine/c.el | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lisp/cedet/semantic/bovine/c.el b/lisp/cedet/semantic/bovine/c.el index 47a54579956..7ec8010867b 100644 --- a/lisp/cedet/semantic/bovine/c.el +++ b/lisp/cedet/semantic/bovine/c.el @@ -2041,10 +2041,12 @@ have to be wrapped in that namespace." (setq sv (cdr sv))) ;; This is optional, and potentially fraught w/ errors. - (condition-case nil - (dolist (lt sv) - (setq txt (concat txt " " (semantic-lex-token-text lt)))) - (error (setq txt (concat txt " #error in summary fcn")))) + (if (stringp sv) + (setq txt (concat txt " " sv)) + (condition-case nil + (dolist (lt sv) + (setq txt (concat txt " " (semantic-lex-token-text lt)))) + (error (setq txt (concat txt " #error in summary fcn"))))) txt) (semantic-idle-summary-current-symbol-info-default)))) -- 2.39.5