Lisp を理解している人は、この警告を解決するのを手伝ってくれませんか?
Emacs 24.3 にアップグレードしましたが、Emacs を使用して Python ファイルを作成するたびに、この警告メッセージが表示されます。python.el
警告を生成するコードの次のセクションを検索して見つけました。
(let ((indentation (when block-end
(goto-char block-end)
(python-util-forward-comment)
(current-indentation))))
(if indentation
(set (make-local-variable 'python-indent-offset) indentation)
(message "Can't guess python-indent-offset, using defaults: %s"
python-indent-offset)))
そして、ここに私の.emacs
セットアップがあります:
(setq-default c-basic-offset 4
tab-width 4
indent-tabs-mode nil)
(add-hook 'c-mode-common-hook
(lambda ()
(c-set-offset 'arglist-intro '+)
(c-set-offset 'arglist-close 0)))
(add-hook 'python-mode-hook
(lambda ()
(c-set-offset 'arglist-intro '+)
(c-set-offset 'arglist-close 0)))