From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/49705 Path: main.gmane.org!not-for-mail From: deskpot@myrealbox.com (Vasily Korytov) Newsgroups: gmane.emacs.gnus.general Subject: " (was: " hardcoded in message-change-subject (patch) Date: Wed, 29 Jan 2003 20:09:44 +0300 Sender: owner-ding@hpc.uh.edu Message-ID: <87el6vkhlz.fsf@unix.home> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" X-Trace: main.gmane.org 1043861664 6951 80.91.224.249 (29 Jan 2003 17:34:24 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 29 Jan 2003 17:34:24 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18dw5i-0001il-00 for ; Wed, 29 Jan 2003 18:33:38 +0100 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 18dvjX-0005zw-00; Wed, 29 Jan 2003 11:10:43 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 29 Jan 2003 11:11:39 -0600 (CST) Original-Received: from sclp3.sclp.com (sclp3.sclp.com [66.230.238.2]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id LAA02411 for ; Wed, 29 Jan 2003 11:11:26 -0600 (CST) Original-Received: (qmail 44882 invoked by alias); 29 Jan 2003 17:10:25 -0000 Original-Received: (qmail 44877 invoked from network); 29 Jan 2003 17:10:24 -0000 Original-Received: from ns1.telekom.ru (root@194.190.195.83) by 66.230.238.6 with SMTP; 29 Jan 2003 17:10:24 -0000 Original-Received: from unix.home (h27.217.elnet.msk.ru [194.190.217.27]) by ns1.telekom.ru (8.12.6/8.12.6) with SMTP id h0THASlY030863 for ; Wed, 29 Jan 2003 20:10:29 +0300 Original-Received: (qmail 2593 invoked from network); 29 Jan 2003 17:12:30 -0000 Original-Received: from localhost (alias@127.0.0.1) by localhost with QMTP; 29 Jan 2003 17:12:30 -0000 Original-Received: (qmail 2555 invoked by uid 1000); 29 Jan 2003 17:09:50 -0000 Original-To: ding@gnus.org X-Attribution: VK Mail-Followup-To: ding@gnus.org User-Agent: Gnus/5.090015 (Oort Gnus v0.15) XEmacs/21.4 (Portable Code, i686-pc-linux) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:49705 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:49705 --==-=-= Content-Type: multipart/mixed; boundary="=-=-=" --=-=-= Content-Transfer-Encoding: quoted-printable I've noted, ``was:'', inserted by message-change-subject, is lowercase. I think, it would be nicer to have it capitalized (as ``Re:''), but I'm not sure, everyone would agree with it (opinions, anyone?). Attached is the patch for making "was: " go in a variable to make everyone happy. =2D--Vas --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=message.el.patch Content-Transfer-Encoding: quoted-printable =2D-- message.el~ Thu Jan 23 01:16:00 2003 +++ message.el Wed Jan 29 20:05:11 2003 @@ -302,6 +302,13 @@ :group 'message-various :type 'regexp) =20 +(defcustom message-change-subject-prefix + "was: " + "*String to be inserted by message-change-subject in parenthesis +before the old subject." + :group 'message-various + :type 'string) + ;;; marking inserted text =20 ;;;###autoload @@ -1630,7 +1637,8 @@ (message-delete-line) (insert (concat "Subject: " new-subject =2D " (was: " + " (" + message-change-subject-prefix old-subject ")\n"))))))))) =20 ;;;###autoload --=-=-=-- --==-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQE+OAreoPg1JPzYGEERAt7OAKCtZaYVZCOk4sSgYoUdNWF8L0c/UgCgsEML VuIDUMSzBJEW/44yQNjCXA8= =lEXV -----END PGP SIGNATURE----- --==-=-=--