-
Notifications
You must be signed in to change notification settings - Fork 10
/
howm.el.in
94 lines (68 loc) · 2.36 KB
/
howm.el.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
;;; howm.el --- Wiki-like note-taking tool
;;; -*- Emacs-Lisp -*-
;;; @configure_input@
;; Copyright (C) 2002, 2003, 2004, 2005-2024 HIRAOKA Kazuyuki
;; Author: HIRAOKA Kazuyuki <kakkokakko@gmail.com>
;; URL: https://kaorahi.github.io/howm/
;; Version: @VERSION@
;; Package-Requires: ((cl-lib "0.5"))
;; 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 1, 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.
;; The GNU General Public License is available by anonymouse ftp from
;; prep.ai.mit.edu in pub/gnu/COPYING. Alternately, you can write to
;; the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
;; USA.
;;--------------------------------------------------------------------
;;; Commentary:
;; See README.
;; HOWM is acronym of "Hitori Otegaru Wiki Modoki".
;;; Code:
(defconst howm-version "@VERSION@")
;; Files [0]-[3] have only hierarchical dependencies,
;; whereas files in [5] have circular dependencies.
;; Each file in [5] provides itself first,
;; and then requires [4] (this file).
;;; [0] official
(require 'easy-mmode)
(require 'font-lock)
;;; [1] cl
(require 'cl-lib)
;;; [2] howm basic libraries
(require 'howm-vars)
(require 'howm-common)
;;; [3] my tools
;; This doesn't work in byte-compilation. I don't understand it. Sigh...
;; (mapcar #'require howm-required-features)
(require 'cheat-font-lock)
(require 'illusion)
(require 'gfunc)
(require 'riffle)
(require 'action-lock)
(require 'iigrep)
(require 'honest-report)
;;; [4] howm main (this file)
(provide 'howm)
;;; [5] howm modules
(require 'howm-backend)
(require 'howm-view)
(require 'howm-mode)
(require 'howm-misc)
(require 'howm-date)
(require 'howm-reminder)
(require 'howm-menu)
;;; for howmz.el [2006-02-02]
;;; http://noir.s7.xrea.com/archives/000136.html
;;; http://noir.s7.xrea.com/pub/zaurus/howmz.el
(howm-require-lang 'en)
(howm-require-lang 'fr)
(howm-require-lang 'ja)
;;; security fix [2006-12-16]
(mapc (lambda (symbol) (put symbol 'risky-local-variable t))
(howm-symbols))
;;; howm.el ends here