Fixed.
[riece] / lisp / riece-foolproof.el
1 ;;; riece-foolproof.el --- channel miss killer
2 ;; Copyright (C) 2004 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 channel miss hold in check
27
28 ;; To use, add the following line to your ~/.riece/init.el:
29 ;; (add-to-list 'riece-addons 'riece-foolproof)
30
31 ;;; Code:
32
33 (eval-when-compile
34   (require 'riece-identity)
35   (require 'riece-display))
36
37 (defvar riece-foolproof-enabled nil)
38
39 (defconst riece-foolproof-description
40   "Channel miss killer")
41
42 (defun riece-foolproof-get-channel-window (identity)
43   (get-buffer-window
44    (cdr (riece-identity-assoc
45          identity riece-channel-buffer-alist))))
46
47 (defun riece-foolproof-command-send-message-function ()
48   (when riece-foolproof-enabled
49     (unless (or (not riece-channel-buffer-mode)
50                 (riece-foolproof-get-channel-window
51                  riece-current-channel))
52       (error "Channel %s is not displayed"
53              (riece-identity-prefix riece-current-channel)))
54     (when executing-kbd-macro
55       (error "%s" "Forbidden to run keyboard macro"))))
56
57 (defun riece-foolproof-insinuate ()
58   (add-hook 'riece-command-send-message-hook
59             'riece-foolproof-command-send-message-function))
60
61 (defun riece-foolproof-enable ()
62   (setq riece-foolproof-enabled t))
63
64 (defun riece-foolproof-disable ()
65   (setq riece-foolproof-enabled nil))
66
67 (provide 'riece-foolproof)
68
69 ;;; riece-foolproof.el ends here