diff options
author | Sean Allred <code@seanallred.com> | 2014-12-08 09:14:35 -0500 |
---|---|---|
committer | Sean Allred <code@seanallred.com> | 2014-12-08 09:14:35 -0500 |
commit | 63fd688497b55377d513fbcfecaaf1a93f9e9012 (patch) | |
tree | 746595089a0c12d8f54010bbad82df6b567e7485 /sx-load.el | |
parent | 6a483f557126114f51ae3e9fe981cfa4a0dca227 (diff) | |
parent | 98a004b8f5a0f160c62563dc034372535f99a58e (diff) |
Merge pull request #140 from vermiculus/requires
Properly order our `require`s
Diffstat (limited to 'sx-load.el')
-rw-r--r-- | sx-load.el | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/sx-load.el b/sx-load.el new file mode 100644 index 0000000..e29d439 --- /dev/null +++ b/sx-load.el @@ -0,0 +1,51 @@ +;;; sx-load.el --- Load all files of the sx package. + +;; Copyright (C) 2014 Artur Malabarba + +;; Author: Artur Malabarba <bruce.connor.am@gmail.com> + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see <http://www.gnu.org/licenses/>. + +;;; Commentary: + +;;; Code: +(mapc #'require + '(sx + sx-time + sx-auth + sx-button + sx-cache + sx-compose + sx-encoding + sx-favorites + sx-filter + sx-interaction + sx-method + sx-networks + sx.org + sx-question + sx-question-list + sx-question-mode + sx-question-print + sx-request + sx-site + sx-tab + )) + +(provide 'sx-load) +;;; sx-load.el ends here + +;; Local Variables: +;; indent-tabs-mode: nil +;; End: |