From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/61258 Path: news.gmane.org!not-for-mail From: Jari Aalto Newsgroups: gmane.emacs.gnus.general Subject: [PATCH] cvs 2005-10-29 score-mode.el::defvar gnus-score-edit-done-hook Date: Sat, 29 Oct 2005 10:31:28 +0300 Message-ID: <20051029073128.PUFY9722.fep32-app.kolumbus.fi@cante.net> NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1130571568 23448 80.91.229.2 (29 Oct 2005 07:39:28 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 29 Oct 2005 07:39:28 +0000 (UTC) Original-X-From: ding-owner+m9790@lists.math.uh.edu Sat Oct 29 09:39:26 2005 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EVlIH-0007zz-GE for ding-account@gmane.org; Sat, 29 Oct 2005 09:38:25 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1EVlI0-0001eb-00; Sat, 29 Oct 2005 02:38:08 -0500 Original-Received: from nas02.math.uh.edu ([129.7.128.40]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1EVlBm-0001eW-00 for ding@lists.math.uh.edu; Sat, 29 Oct 2005 02:31:42 -0500 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas02.math.uh.edu with esmtp (Exim 4.52) id 1EVlBe-0004rP-Iw for ding@lists.math.uh.edu; Sat, 29 Oct 2005 02:31:41 -0500 Original-Received: from fep32-0.kolumbus.fi ([193.229.0.63] helo=fep32-app.kolumbus.fi) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1EVlBZ-0005ua-00 for ; Sat, 29 Oct 2005 09:31:29 +0200 Original-Received: from cante.net ([81.197.0.130]) by fep32-app.kolumbus.fi with ESMTP id <20051029073128.PUFY9722.fep32-app.kolumbus.fi@cante.net> for ; Sat, 29 Oct 2005 10:31:28 +0300 Original-To: Emacs Gnus-L Mail-Copies-To: poster X-Spam-Score: -2.6 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:61258 Archived-At: Here is small fix. gnus-score.el:2392: (run-hooks 'gnus-score-edit-done-hook))) 2005-10-29 Jari Aalto * score-mode.el (gnus-score-edit-done-hook): Introduce variable. Used in gnus-score.el. Index: score-mode.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/score-mode.el,v retrieving revision 7.7 diff -u -IId: -b -w -u -r7.7 score-mode.el --- score-mode.el 26 Aug 2005 00:05:02 -0000 7.7 +++ score-mode.el 29 Oct 2005 07:21:46 -0000 @@ -31,6 +31,9 @@ (require 'mm-util) ; for mm-universal-coding-system (require 'gnus-util) ; for gnus-pp, gnus-run-mode-hooks +(defvar gnus-score-edit-done-hook nil + "*Hook run at the end of closing the score buffer.") + (defvar gnus-score-mode-hook nil "*Hook run in score mode buffers.")