T-gnus 6.14.6; synch up with Gnus v5.8.8.
[elisp/gnus.git-] / lisp / score-mode.el
1 ;;; score-mode.el --- mode for editing Gnus score files
2 ;; Copyright (C) 1996 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;; Keywords: news, mail
6
7 ;; This file is part of GNU Emacs.
8
9 ;; GNU Emacs 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 2, or (at your option)
12 ;; any later version.
13
14 ;; GNU Emacs 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 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 ;;; Code:
27
28 (eval-when-compile (require 'cl))
29 (eval-when-compile (require 'static))
30
31 (defvar gnus-score-mode-hook nil
32   "*Hook run in score mode buffers.")
33
34 (defvar gnus-score-menu-hook nil
35   "*Hook run after creating the score mode menu.")
36
37 (defvar gnus-score-edit-exit-function nil
38   "Function run on exit from the score buffer.")
39
40 (defvar gnus-score-mode-map nil)
41 (unless gnus-score-mode-map
42   (setq gnus-score-mode-map (make-sparse-keymap))
43   (set-keymap-parent gnus-score-mode-map emacs-lisp-mode-map)
44   (define-key gnus-score-mode-map "\C-c\C-c" 'gnus-score-edit-exit)
45   (define-key gnus-score-mode-map "\C-c\C-d" 'gnus-score-edit-insert-date)
46   (define-key gnus-score-mode-map "\C-c\C-p" 'gnus-score-pretty-print))
47
48 (defvar score-mode-syntax-table
49   (let ((table (copy-syntax-table lisp-mode-syntax-table)))
50     (modify-syntax-entry ?| "w" table)
51     table)
52   "Syntax table used in score-mode buffers.")
53
54 (defvar score-mode-coding-system (static-if (boundp 'MULE)
55                                      '*ctext*
56                                    'ctext))
57
58 ;;;###autoload
59 (defun gnus-score-mode ()
60   "Mode for editing Gnus score files.
61 This mode is an extended emacs-lisp mode.
62
63 \\{gnus-score-mode-map}"
64   (interactive)
65   (kill-all-local-variables)
66   (use-local-map gnus-score-mode-map)
67   (gnus-score-make-menu-bar)
68   (set-syntax-table score-mode-syntax-table)
69   (setq major-mode 'gnus-score-mode)
70   (setq mode-name "Score")
71   (lisp-mode-variables nil)
72   (make-local-variable 'gnus-score-edit-exit-function)
73   (run-hooks 'emacs-lisp-mode-hook 'gnus-score-mode-hook))
74
75 (defun gnus-score-make-menu-bar ()
76   (unless (boundp 'gnus-score-menu)
77     (easy-menu-define
78      gnus-score-menu gnus-score-mode-map ""
79      '("Score"
80        ["Exit" gnus-score-edit-exit t]
81        ["Insert date" gnus-score-edit-insert-date t]
82        ["Format" gnus-score-pretty-print t]))
83     (run-hooks 'gnus-score-menu-hook)))
84
85 (defun gnus-score-edit-insert-date ()
86   "Insert date in numerical format."
87   (interactive)
88   (princ (time-to-days (current-time)) (current-buffer)))
89
90 (defun gnus-score-pretty-print ()
91   "Format the current score file."
92   (interactive)
93   (goto-char (point-min))
94   (let ((form (read (current-buffer))))
95     (erase-buffer)
96     (let ((emacs-lisp-mode-syntax-table score-mode-syntax-table))
97       (pp form (current-buffer))))
98   (goto-char (point-min)))
99
100 (defun gnus-score-edit-exit ()
101   "Stop editing the score file."
102   (interactive)
103   (unless (file-exists-p (file-name-directory (buffer-file-name)))
104     (make-directory (file-name-directory (buffer-file-name)) t))
105   (save-buffer-as-coding-system score-mode-coding-system)
106   (bury-buffer (current-buffer))
107   (let ((buf (current-buffer)))
108     (when gnus-score-edit-exit-function
109       (funcall gnus-score-edit-exit-function))
110     (when (eq buf (current-buffer))
111       (switch-to-buffer (other-buffer (current-buffer))))))
112
113 (provide 'score-mode)
114
115 ;;; score-mode.el ends here