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.
load-fileコマンドで大文字と小文字を区別しないようにするには、Emacs24 でどのような設定を行う必要がありますか?
load-file
直接組み込まれているものはないと思いますが、標準の Elisp ファイルはすべて小文字の名前を持っているので、それだけで対処する必要がある場合は、次のようにすることができます。
(defadvice load-file (around lowercase-argument activate compile) "Call `downcase' on the FILE argument to `load-file'." (let ((file (downcase file))) ad-do-it))