.emacs: Remove `.el` suffixes from load() calls.
authorW. Trevor King <wking@tremily.us>
Sun, 6 Jan 2013 12:35:09 +0000 (07:35 -0500)
committerW. Trevor King <wking@tremily.us>
Sun, 6 Jan 2013 12:35:09 +0000 (07:35 -0500)
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

local-patch.examples/003-no-emacs-cython.patch
local-patch.examples/005-no-emacs-epa.patch
src/.emacs
src/.emacs-admin

index 40baa5a68d6fb3bc9c5015cf3199be21cc0c62a5..1b1960a7e54688d69c781e5d311674bb4240b637 100644 (file)
@@ -1,8 +1,8 @@
 --- 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)
 -
index 358f7f33a80915e7c5f1ea055413db13bbb9ecc9..d27b59e3571bacccca1753c6d16a897e4a7eec95 100644 (file)
@@ -1,10 +1,10 @@
 --- 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")
index b686e62c4db3f4742747a67b4722a6b0752505d1..2f321133c461aed1bb529f2acb05f3ffea9b86e9 100644 (file)
@@ -9,16 +9,16 @@
 (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)
 
@@ -27,5 +27,5 @@
 ; 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")
index 0ce941ca5fe56c5914674be9bc73ebc0a87bd88f..c959380facad64234ba0a8a5f2d473b77eeecd14 100644 (file)
@@ -9,5 +9,5 @@
 (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")