次のコードで eval を避けるべきですか? もしそうなら、どのように?それとも、これは eval を使用する方が優れている例外的なケースの 1 つですか?
(dolist (command '(....))
(eval
`(defadvice ,command (around blah activate)
...)))
上記のイディオムの実際の例:
(dolist (command '(paredit-comment-dwim comment-dwim))
(eval
`(defadvice ,command (around my-check-parens-and-warn-for-comment activate)
(if (and (called-interactively-p 'any)
(use-region-p))
(progn
(my-check-parens-and-warn-if-mismatch "You commented out a region and introduced a mismatched paren")
ad-do-it
(my-check-parens-and-warn-if-mismatch "You uncommented out a region and introduced a mismatched paren"))
ad-do-it))))