Emacs expects the given name to not have an extension, and adds a
range of possible extensions to find the file [1]:
Function: load filename &optional missing-ok nomessage nosuffix must-suffix
...
To find the file, load first looks for a file named filename.elc,
that is, for a file whose name is filename with the extension ‘.elc’
appended. If such a file exists, it is loaded. If there is no file
by that name, then load looks for a file named filename.el. If that
file exists, it is loaded. Finally, if neither of those names is
found, load looks for a file named filename with nothing appended,
and loads it if it exists.
[1]: http://www.gnu.org/software/emacs/manual/html_node/elisp/How-Programs-Do-Loading.html#index-load-826
--- a/.emacs
+++ b/.emacs
@@ -20,8 +20,6 @@
- (load "wtk_no-vc.el")
- (load "wtk_ansi-color.el")
+ (load "wtk_no-vc")
+ (load "wtk_ansi-color")
-(require 'cython-mode)
-
--- a/.emacs
+++ b/.emacs
@@ -15,7 +15,6 @@
- (load "wtk_layout.el")
- (load "wtk_linux.el")
- (load "wtk_aspell.el")
--(load "wtk_epa.el")
- (load "wtk_org.el")
- (load "wtk_no-vc.el")
- (load "wtk_ansi-color.el")
+ (load "wtk_layout")
+ (load "wtk_linux")
+ (load "wtk_aspell")
+-(load "wtk_epa")
+ (load "wtk_org")
+ (load "wtk_no-vc")
+ (load "wtk_ansi-color")
(add-to-list 'load-path "~/.emacs.d/site-lisp/")
; Load useful customizations
-(load "wtk_common.el")
-(load "wtk_centralized_backups.el")
-(load "wtk_utf-8.el")
-(load "wtk_layout.el")
-(load "wtk_linux.el")
-(load "wtk_aspell.el")
-(load "wtk_epa.el")
-(load "wtk_org.el")
-(load "wtk_no-vc.el")
-(load "wtk_ansi-color.el")
+(load "wtk_common")
+(load "wtk_centralized_backups")
+(load "wtk_utf-8")
+(load "wtk_layout")
+(load "wtk_linux")
+(load "wtk_aspell")
+(load "wtk_epa")
+(load "wtk_org")
+(load "wtk_no-vc")
+(load "wtk_ansi-color")
(require 'cython-mode)
; Play GNU Go in an emacs buffer
;(require 'gnugo)
-; Load querty.el, for switching keyboard mappings.
-;(load "querty.el")
+; Load querty, for switching keyboard mappings.
+;(load "querty")
(add-to-list 'load-path "~/.emacs.d/site-lisp/")
; Load useful customizations
-(load "wtk_common.el")
-(load "wtk_centralized_backups.el")
+(load "wtk_common")
+(load "wtk_centralized_backups")