Gnus development mailing list
 help / color / mirror / Atom feed
From: Sudish Joseph <sudish@mindspring.com>
Subject: [patch] support the %-hack in nnmail-split-fancy
Date: 07 Jul 1996 13:58:57 -0400	[thread overview]
Message-ID: <m23f34osgu.fsf@atreides.erehwon.org> (raw)

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  <sudish@mindspring.com>
+ 
+ 	* 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.")


                 reply	other threads:[~1996-07-07 17:58 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m23f34osgu.fsf@atreides.erehwon.org \
    --to=sudish@mindspring.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).