* riece-misc.el (riece-concat-channel-topic): Don't append ":" if
[riece] / lisp / riece-skk-kakutei.el
1 ;;; riece-skk-kakutei.el --- add-on skk-kakutei
2 ;; Copyright (C) 2003 TAKAHASHI Kaoru
3
4 ;; Author: TAKAHASHI "beatmaria" Kaoru <kaoru@kaisei.org>
5 ;; Keywords: IRC, riece
6
7 ;; This file is part of Riece.
8
9 ;; This program is free software; you can redistribute it and/or
10 ;; modify it under the terms of the GNU General Public License as
11 ;; published by the Free Software Foundation; either version 2, or (at
12 ;; your option) any later version.
13
14 ;; This program is distributed in the hope that it will be useful, but
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 ;; General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;; This add-on deny SKK's sankaku send.
27
28 ;; To use, add the following line to your ~/.riece/init.el:
29 ;; (add-to-list 'riece-addons 'riece-skk-kakutei)
30
31 ;;; Code:
32
33 (eval-when-compile (require 'riece))
34
35 (defun riece-skk-kakutei-command-enter-message ()
36   "Send the current line to the current channel."
37   (interactive)
38   (when (riece-skk-kakutei)
39     (riece-command-enter-message)))
40
41 (defun riece-skk-kakutei-command-enter-message-as-notice ()
42   "Send the current line to the current channel as NOTICE."
43   (interactive)
44   (when (riece-skk-kakutei)
45     (riece-command-enter-message-ad-notice)))
46
47 (defun riece-skk-kakutei ()
48   "When required after-follow return `t'."
49   (interactive)
50   (cond ((or (not (boundp 'skk-mode)) (not skk-mode))
51          t)
52         ((and (boundp 'skk-henkan-mode) (not skk-henkan-mode))
53          t)
54         ((and (boundp 'skk-henkan-on) (not skk-henkan-on))
55          t)
56         (skk-egg-like-newline
57          (skk-kakutei)
58          nil)
59         (t
60          (skk-kakutei)
61          t)))
62
63 (defun riece-skk-kakutei-insinuate ()
64   (riece-define-keys riece-command-mode-map
65     "\r" riece-skk-kakutei-command-enter-message
66     [(control return)] riece-skk-kakutei-command-enter-message-as-notice))
67
68 (provide 'riece-skk-kakutei)
69
70 ;;; riece-skk-kakutei.el ends here