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
的东西可以强调所有破坏性功能?