|
| 1 | +;;; haskell-utils.el --- General utility functions used by haskell-mode modules |
| 2 | + |
| 3 | +;; Copyright (C) 2013 Herbert Valerio Riedel |
| 4 | + |
| 5 | +;; Author: Herbert Valerio Riedel <[email protected]> |
| 6 | + |
| 7 | +;; This file is not part of GNU Emacs. |
| 8 | + |
| 9 | +;; This file is free software; you can redistribute it and/or modify |
| 10 | +;; it under the terms of the GNU General Public License as published by |
| 11 | +;; the Free Software Foundation; either version 3 of the License, or |
| 12 | +;; (at your option) any later version. |
| 13 | + |
| 14 | +;; This file is distributed in the hope that it will be useful, |
| 15 | +;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | +;; GNU General Public License for more details. |
| 18 | + |
| 19 | +;; You should have received a copy of the GNU General Public License |
| 20 | +;; along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 21 | + |
| 22 | +;;; Commentary: |
| 23 | + |
| 24 | +;; This module's purpose is to provide a place for helper functions |
| 25 | +;; which are general enough to be usable by multiple modules and/or |
| 26 | +;; to alleviate circular module dependency problems. |
| 27 | +;; |
| 28 | +;; When possible, functions in this module shall be accompanied by |
| 29 | +;; ERT-based unit tests. |
| 30 | +;; |
| 31 | +;; See also `haskell-str.el' for string utility functions. |
| 32 | +;; |
| 33 | +;; All symbols in this module have a `haskell-utils-' prefix. |
| 34 | + |
| 35 | +;;; Code: |
| 36 | + |
| 37 | +;; NOTE: This module is supposed to be a leaf-module and shall not |
| 38 | +;; require/depend-on any other haskell-mode modules in order to |
| 39 | +;; stay at the bottom of the module dependency graph. |
| 40 | + |
| 41 | +(provide 'haskell-utils) |
| 42 | + |
| 43 | +;;; haskell-utils.el ends here |
0 commit comments