.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)
commitc54c005ebf0287782f41c546ea8db88c39466144
tree1c072cfe980b080cab74ca4da7c273df91193396
parente682b4c6071f7ae06e487199a94bae63b393d9e9
.emacs: Remove `.el` suffixes from load() calls.

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