Emacs は、バイト コンパイルに関する有用な警告を表示します。使用されている破壊的な操作に関する警告を追加するプラグインはありますか? そのため、次のようなコードを書くと:
(defun get-countdown ()
(let ((x (number-sequence 0 10)))
(message (format "%s" (sort x #'>)))
x))#
Emacsは不平を言います:
temp.el:4:5:Warning: using variable modified by `sort'.
それともelisp-newbie-mode
、すべての破壊的な機能を強調するようなものでしょうか?