From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/7147 Path: main.gmane.org!not-for-mail From: Sudish Joseph Newsgroups: gmane.emacs.gnus.general Subject: [patch] support the %-hack in nnmail-split-fancy Date: 07 Jul 1996 13:58:57 -0400 Sender: sj@mindspring.com Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.69) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035147500 6108 80.91.224.250 (20 Oct 2002 20:58:20 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 20:58:20 +0000 (UTC) Return-Path: ding-request@ifi.uio.no Original-Received: from ifi.uio.no (ifi.uio.no [129.240.64.2]) by deanna.miranova.com (8.7.5/8.6.9) with SMTP id LAA09924 for ; Sun, 7 Jul 1996 11:06:24 -0700 Original-Received: from atreides.erehwon.org (sj@user-168-121-167-78.dialup.mindspring.com [168.121.167.78]) by ifi.uio.no with ESMTP (8.6.11/ifi2.4) id for ; Sun, 7 Jul 1996 19:55:09 +0200 Original-Received: (from sj@localhost) by atreides.erehwon.org (8.7.5/8.7.3) id NAA00329; Sun, 7 Jul 1996 13:58:58 -0400 Original-To: ding@ifi.uio.no Original-Lines: 43 X-Mailer: Gnus v5.2.34/XEmacs 19.14 Xref: main.gmane.org gmane.emacs.gnus.general:7147 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:7147 See Changelog entry below. All the other stuff that can terminate a local-part for our purposes seem to be "."'s already. -Sudish *** ChangeLog~ Sun Jul 7 13:50:39 1996 --- ChangeLog Sun Jul 7 13:50:39 1996 *************** *** 0 **** --- 1,5 ---- + Sun Jul 7 13:33:44 1996 Sudish Joseph + + * nnmail.el (nnmail-split-fancy-syntax-table): `%' should have + punctuation syntax to support the %-hack in addresses. + *** nnmail.el~ Sun Jul 7 13:33:18 1996 --- nnmail.el Sun Jul 7 13:33:18 1996 *************** *** 269,277 **** (defvar nnmail-pop-password nil "*Password to use when reading mail from a POP server, if required.") ! (defvar nnmail-split-fancy-syntax-table ! (copy-syntax-table (standard-syntax-table)) "Syntax table used by `nnmail-split-fancy'.") (defvar nnmail-prepare-save-mail-hook nil "Hook called before saving mail.") --- 269,282 ---- (defvar nnmail-pop-password nil "*Password to use when reading mail from a POP server, if required.") ! (defvar nnmail-split-fancy-syntax-table nil "Syntax table used by `nnmail-split-fancy'.") + (unless (syntax-table-p nnmail-split-fancy-syntax-table) + (setq nnmail-split-fancy-syntax-table + (copy-syntax-table (standard-syntax-table))) + ;; support the %-hack + (modify-syntax-entry ?\% "." nnmail-split-fancy-syntax-table)) + (defvar nnmail-prepare-save-mail-hook nil "Hook called before saving mail.")