X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=lisp%2Fscore-mode.el;h=25a5f47588063e24c421a5ccf5e976db47b63976;hb=27688c4fe73986a46e3f2cb9051170f41ef82f4c;hp=4d03128c80469a237bfe73ae902ff06fb18c6cbe;hpb=05eee813689e409477971f682d4b78bb63ff367f;p=elisp%2Fgnus.git- diff --git a/lisp/score-mode.el b/lisp/score-mode.el index 4d03128..25a5f47 100644 --- a/lisp/score-mode.el +++ b/lisp/score-mode.el @@ -1,5 +1,6 @@ ;;; score-mode.el --- mode for editing Gnus score files -;; Copyright (C) 1996 Free Software Foundation, Inc. + +;; Copyright (C) 1996, 2001, 2004, 2005 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen ;; Keywords: news, mail @@ -18,15 +19,16 @@ ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs; see the file COPYING. If not, write to the -;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, -;; Boston, MA 02111-1307, USA. +;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +;; Boston, MA 02110-1301, USA. ;;; Commentary: ;;; Code: -(require 'easymenu) (eval-when-compile (require 'cl)) +(eval-when-compile (require 'static)) +(require 'gnus-util) ; for gnus-pp, gnus-run-mode-hooks (defvar gnus-score-mode-hook nil "*Hook run in score mode buffers.") @@ -68,7 +70,7 @@ This mode is an extended emacs-lisp mode. (setq mode-name "Score") (lisp-mode-variables nil) (make-local-variable 'gnus-score-edit-exit-function) - (run-hooks 'emacs-lisp-mode-hook 'gnus-score-mode-hook)) + (gnus-run-mode-hooks 'emacs-lisp-mode-hook 'gnus-score-mode-hook)) (defun gnus-score-make-menu-bar () (unless (boundp 'gnus-score-menu) @@ -92,7 +94,7 @@ This mode is an extended emacs-lisp mode. (let ((form (read (current-buffer)))) (erase-buffer) (let ((emacs-lisp-mode-syntax-table score-mode-syntax-table)) - (pp form (current-buffer)))) + (gnus-pp form))) (goto-char (point-min))) (defun gnus-score-edit-exit ()