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
突出了所有破坏性功能?