* 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:
parent
3db52056f1
commit
c5803bd730
2 changed files with 5 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue