Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 lisp中找到与fset等效的setf方式。
(symbol-function 'foo)是 elisp 中的广义变量,因此您可以使用:
(symbol-function 'foo)
(setf (symbol-function 'forward-word) #'backward-word)
作为替代方案:
(fset 'forward-word #'backward-word)
(作为旁注,当您想使用动态范围覆盖函数时,您可以做同样的事情来cl-letf替换已弃用的函数。)flet
cl-letf
flet