标签: emacs toolbar
我在每次启动Emacs时都会收到此消息:
Toggling tool-bar-mode off; better pass an explicit argument.
它与我的.emacs中的这行代码有关:
(tool-bar-mode nil)
我的代码中没有错。我该如何修复此消息?
答案 0 :(得分:2)
nil缺少价值。该消息告诉您使用实际值。
nil
改为使用(tool-bar-mode -1)。
(tool-bar-mode -1)