From: g0dil Date: Sat, 3 Feb 2007 12:50:31 +0000 (+0000) Subject: Fix handling of doxy-comments with '<' modifier X-Git-Url: http://g0dil.de/git?p=emacsstuff.git;a=commitdiff_plain;h=ebf783b84f8e6e523103f67c704b3a4c1000ff22 Fix handling of doxy-comments with '<' modifier --- diff --git a/cc-ide/cc-ide.el b/cc-ide/cc-ide.el index 07ccb5d..8796fcb 100644 --- a/cc-ide/cc-ide.el +++ b/cc-ide/cc-ide.el @@ -167,11 +167,18 @@ (defun ccide-in-doxy-comment () (save-excursion (back-to-indentation) - (if (eq (c-in-literal) 'c) - (progn - (goto-char (car (c-literal-limits))) - (and (looking-at "/\\*\\*[ \t\n\r@]") - (current-column)))))) + (let ((lit (c-in-literal))) + (if (cond ((eq lit 'c) + (goto-char (car (c-literal-limits))) + (looking-at "/\\*\\*