diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-09 15:10:26 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-12-09 15:10:26 +0000 |
commit | db82dc546b528eef2487820381884c7c67e3683a (patch) | |
tree | 00fc5da4031932315956e79952aa4cce2e68e6db /sx-load.el | |
parent | 2651764450b76bd6573cfea2b98f54beeae4f0f1 (diff) | |
parent | a983476a59701f1cc01580b16fc5235360054adf (diff) |
Merge branch 'master' into fix-@highligthing
Conflicts:
test/tests.el
Diffstat (limited to 'sx-load.el')
-rw-r--r-- | sx-load.el | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/sx-load.el b/sx-load.el new file mode 100644 index 0000000..659f54b --- /dev/null +++ b/sx-load.el @@ -0,0 +1,50 @@ +;;; 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-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: |