OSDN Git Service

update version string in header comments for MELPA
[howm/howm.git] / howm.el.in
1 ;;; howm.el --- Wiki-like note-taking tool
2 ;;; -*- Emacs-Lisp -*-
3 ;;; @configure_input@
4
5 ;; Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2015, 2016, 2017 HIRAOKA Kazuyuki
6
7 ;; Author: HIRAOKA Kazuyuki <khi@users.sourceforge.jp>
8 ;; URL: http://howm.osdn.jp
9 ;; Version: ~VERSION~
10 ;; Package-Requires: ((cl-lib "0.5"))
11
12 ;; This program is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 1, or (at your option)
15 ;; any later version.
16
17 ;; This program is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; The GNU General Public License is available by anonymouse ftp from
23 ;; prep.ai.mit.edu in pub/gnu/COPYING.  Alternately, you can write to
24 ;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
25 ;; USA.
26 ;;--------------------------------------------------------------------
27
28 ;;; DESCRIPTION:
29 ;;; 
30 ;;; See README.
31 ;;; HOWM is acronym of "Hitori Otegaru Wiki Modoki".
32
33 ;; Files [0]-[3] have only hierarchical dependencies,
34 ;; whereas files in [5] have circular dependencies.
35 ;; Each file in [5] provides itself first,
36 ;; and then requires [4] (this file).
37
38 ;;; [0] official
39
40 (require 'easy-mmode)
41 (require 'font-lock)
42
43 ;;; [1] cl
44
45 (require 'cl-lib)
46
47 ;;; [2] howm basic libraries
48
49 (require 'howm-version)
50 (require 'howm-vars)
51 (require 'howm-common)
52
53 ;;; [3] my tools
54
55 ;; This doesn't work in byte-compilation. I don't understand it. Sigh...
56 ;; (mapcar #'require howm-required-features)
57
58 (require 'cheat-font-lock)
59 (require 'illusion)
60 (require 'gfunc)
61 (require 'riffle)
62 (require 'action-lock)
63 (require 'honest-report)
64
65 ;;; [4] howm main (this file)
66
67 (provide 'howm)
68
69 ;;; [5] howm modules
70
71 (require 'howm-backend)
72 (require 'howm-view)
73 (require 'howm-mode)
74 (require 'howm-misc)
75 (require 'howm-date)
76 (require 'howm-reminder)
77 (require 'howm-menu)
78
79 ;;; for howmz.el [2006-02-02]
80 ;;; http://noir.s7.xrea.com/archives/000136.html
81 ;;; http://noir.s7.xrea.com/pub/zaurus/howmz.el
82
83 (howm-require-lang 'en)
84 (howm-require-lang 'ja)
85
86 ;;; security fix [2006-12-16]
87 (mapc (lambda (symbol) (put symbol 'risky-local-variable t))
88       (howm-symbols))
89
90 ;;; howm.el ends here