help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: (Flaw in) tab completion of email addresses in mail buffer


From: Andy Sawyer
Subject: Re: (Flaw in) tab completion of email addresses in mail buffer
Date: Fri, 11 Jul 2003 00:12:33 GMT
User-agent: Gnus v5.8.8/XEmacs

In article <m3he5uoumo.fsf@crayt3e.stanford.edu>,
 on 10 Jul 2003 15:59:59 -0700,
 Kaustuv <kaustuv@stanford.edu> wrote:

> BTW is there no genralization of looking-at function which looks at more
> than one regexp so effectively it is doing:
>  (or (or (looking-at "^To:") (looking-at "^CC:")) (looking-at
>  "^BCC:"))

Well, you could write:

 (or (looking-at "^To:") (looking-at "^CC:") (looking-at "^BCC:"))

which is will give the same result, but with less wear on those vital
paren keys :). Even better, IMHO, though would be:

 (looking-at "^^\\(To\\|B?CC\\):")

Regards,
 '(andys)
-- 
"Light thinks it travels faster than anything but it is wrong. No matter
 how fast light travels it finds the darkness has always got there first,
 and is waiting for it."                  -- Terry Pratchett, Reaper Man


reply via email to

[Prev in Thread] Current Thread [Next in Thread]