diff options
author | Eli Zaretskii <eliz@gnu.org> | 2005-10-20 12:08:25 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2005-10-20 12:08:25 +0000 |
commit | a5f271ab16e9cc0a1634cf36e6393172074e59c8 (patch) | |
tree | e475168a4c146a0814b70eedecbc32804c192ad8 /lisp | |
parent | ea5b829c21c096a8c8f957f470ee44ae48e4e8a6 (diff) | |
download | emacs-a5f271ab16e9cc0a1634cf36e6393172074e59c8.tar.gz |
($(lisp)/mh-e/mh-loaddefs.el): Bind find-file-suppress-same-file-warnings
to t, to avoid warnings due to different drive letter case in D:/foo/bar.el
vs d:/foo/bar.el.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/makefile.w32-in | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b7d10e75ea7..69451ef3c53 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2005-10-20 Eli Zaretskii <eliz@gnu.org> + + * makefile.w32-in ($(lisp)/mh-e/mh-loaddefs.el): Bind + find-file-suppress-same-file-warnings to t, to avoid warnings due + to different drive letter case in D:/foo/bar.el vs d:/foo/bar.el. + 2005-10-20 Romain Francoise <romain@orebokech.com> * font-core.el (font-lock-mode): Doc fix. diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index d909c909b10..059351cf4be 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -306,6 +306,7 @@ $(lisp)/mh-e/mh-loaddefs.el: $(MH_E_SRC) -l autoload \ --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \ --eval "(setq generated-autoload-file \"$(lisp)/mh-e/mh-loaddefs.el\")" \ + --eval "(setq find-file-suppress-same-file-warnings t)" \ --eval "(setq make-backup-files nil)" \ -f batch-update-autoloads $(lisp)/mh-e |