emacs scratch not interactive mode

时间:2015-05-27 12:42:36

标签: emacs elisp interactive

我更新了很多直接从github到MELPA包的软件包。尽管如此,我的 * scratch * 缓冲区发生了一些非常奇怪的事情。默认消息未出现(缓冲区完全为空),并且未设置交互式elisp模式(假设我写(+ 2 2)然后点击C-j并告诉我无效功能)。我不知道为什么。我甚至不知道如何调试它以检查错误的位置。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

最后问题是由flycheck-add-next-checker生成的,由于某种原因,使用MELPA存储库会产生此错误。我刚评论了配置文件的以下部分。

 (eval-after-load 'flycheck
   '(progn
       ;; Add Google C++ Style checker.
       ;; In default, syntax checked by Clang and Cppcheck.
       (flycheck-add-next-checker 'c/c++-clang
           '(warnings-only . c/c++-googlelint))))