0

必须在 Emacs24 中设置什么设置才能使load-file命令不区分大小写?

4

1 回答 1

1

我不认为有任何直接内置的东西,但所有标准 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))
于 2015-12-02T06:57:50.453 回答