* lisp/cedet/semantic/idle.el (define-semantic-idle-service):

No need to use eval-and-compile, progn will do.
(eval-and-compile ends up causing spurious warnings.)
This commit is contained in:
Glenn Morris 2013-06-19 16:29:09 -04:00
parent 3db52056f1
commit c5803bd730
2 changed files with 5 additions and 2 deletions

View file

@ -578,7 +578,7 @@ This routine creates the following functions and variables:"
(setup (intern (concat (symbol-name name) "-mode-setup")))
(func (intern (concat (symbol-name name) "-idle-function"))))
`(eval-and-compile
`(progn
(define-minor-mode ,global
,(concat "Toggle " (symbol-name global) ".
With ARG, turn the minor mode on if ARG is positive, off otherwise.