我正在嘗試使用交互功能名稱功能。在emacs lisp手冊上它說:Elisp交互功能名稱
'a' 函數名稱(即滿足fboundp的符號)。現有,完成,提示。
所以我用一個小的測試代碼試了一下:
(defun testfun1()
(message "hello, world!"))
(defun test (abcd)
(interactive "aTheme name: ")
(abcd))
Emacs中給出了一個錯誤的說法,
測試:符號的功能定義是無效:ABCD
我試圖測試與ABCD fboundp,它返回t。所以我很困惑如何在交互中使用'a'選項。 任何機構都可以提供一些提示?
啊,謝謝,這清除了事情。 – sudo 2011-03-20 23:22:32