1992-05-30 21:11:25 +00:00
|
|
|
;;; rfc822.el --- hairy rfc822 parser for mail and news and suchlike
|
|
|
|
|
2017-01-01 03:14:01 +00:00
|
|
|
;; Copyright (C) 1986-1987, 1990, 2001-2017 Free Software Foundation,
|
2013-01-01 09:11:05 +00:00
|
|
|
;; Inc.
|
1992-07-22 04:22:30 +00:00
|
|
|
|
1992-07-15 23:29:10 +00:00
|
|
|
;; Author: Richard Mlynarik <mly@eddie.mit.edu>
|
2014-02-10 01:34:22 +00:00
|
|
|
;; Maintainer: emacs-devel@gnu.org
|
1992-07-17 20:24:00 +00:00
|
|
|
;; Keywords: mail
|
1992-07-15 23:29:10 +00:00
|
|
|
|
1990-01-17 00:48:36 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
2008-05-06 07:25:26 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1990-01-17 00:48:36 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 07:25:26 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
1990-01-17 00:48:36 +00:00
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1990-01-17 00:48:36 +00:00
|
|
|
|
1993-03-22 16:53:22 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Support functions for parsing RFC-822 headers, used by mail and news
|
2003-02-04 13:24:35 +00:00
|
|
|
;; modes.
|
1993-03-22 16:53:22 +00:00
|
|
|
|
1992-07-15 23:29:10 +00:00
|
|
|
;;; Code:
|
|
|
|
|
2003-12-29 19:59:24 +00:00
|
|
|
(defvar rfc822-address-start)
|
|
|
|
|
|
|
|
;; uses rfc822-address-start free, throws to address
|
1990-01-17 00:48:36 +00:00
|
|
|
(defun rfc822-bad-address (reason)
|
|
|
|
(save-restriction
|
|
|
|
(insert "_^_")
|
2003-12-29 19:59:24 +00:00
|
|
|
(narrow-to-region rfc822-address-start
|
1990-01-17 00:48:36 +00:00
|
|
|
(if (re-search-forward "[,;]" nil t)
|
|
|
|
(max (point-min) (1- (point)))
|
|
|
|
(point-max)))
|
|
|
|
;; make the error string be suitable for inclusion in (...)
|
|
|
|
(let ((losers '("\\" "(" ")" "\n")))
|
|
|
|
(while losers
|
|
|
|
(goto-char (point-min))
|
|
|
|
(while (search-forward (car losers) nil t)
|
|
|
|
(backward-char 1)
|
|
|
|
(insert ?\\)
|
|
|
|
(forward-char 1))
|
|
|
|
(setq losers (cdr losers))))
|
|
|
|
(goto-char (point-min)) (insert "(Unparsable address -- "
|
|
|
|
reason
|
1996-08-18 01:18:56 +00:00
|
|
|
": \"")
|
1990-01-17 00:48:36 +00:00
|
|
|
(goto-char (point-max)) (insert "\")"))
|
|
|
|
(rfc822-nuke-whitespace)
|
2003-12-29 19:59:24 +00:00
|
|
|
(throw 'address (buffer-substring rfc822-address-start (point))))
|
1990-01-17 00:48:36 +00:00
|
|
|
|
|
|
|
(defun rfc822-nuke-whitespace (&optional leave-space)
|
|
|
|
(let (ch)
|
|
|
|
(while (cond ((eobp)
|
|
|
|
nil)
|
|
|
|
((= (setq ch (following-char)) ?\()
|
|
|
|
(forward-char 1)
|
|
|
|
(while (if (eobp)
|
|
|
|
(rfc822-bad-address "Unbalanced comment (...)")
|
|
|
|
(/= (setq ch (following-char)) ?\)))
|
|
|
|
(cond ((looking-at "[^()\\]+")
|
|
|
|
(replace-match ""))
|
|
|
|
((= ch ?\()
|
|
|
|
(rfc822-nuke-whitespace))
|
|
|
|
((< (point) (1- (point-max)))
|
|
|
|
(delete-char 2))
|
|
|
|
(t
|
|
|
|
(rfc822-bad-address "orphaned backslash"))))
|
|
|
|
;; delete remaining "()"
|
|
|
|
(forward-char -1)
|
|
|
|
(delete-char 2)
|
|
|
|
t)
|
2003-02-18 11:07:40 +00:00
|
|
|
((memq ch '(?\ ?\t ?\n))
|
1990-01-17 00:48:36 +00:00
|
|
|
(delete-region (point)
|
|
|
|
(progn (skip-chars-forward " \t\n") (point)))
|
|
|
|
t)
|
|
|
|
(t
|
|
|
|
nil)))
|
|
|
|
(or (not leave-space)
|
|
|
|
(eobp)
|
|
|
|
(bobp)
|
|
|
|
(= (preceding-char) ?\ )
|
|
|
|
(insert ?\ ))))
|
|
|
|
|
|
|
|
(defun rfc822-looking-at (regex &optional leave-space)
|
|
|
|
(if (cond ((stringp regex)
|
|
|
|
(if (looking-at regex)
|
|
|
|
(progn (goto-char (match-end 0))
|
|
|
|
t)))
|
|
|
|
(t
|
|
|
|
(if (and (not (eobp))
|
|
|
|
(= (following-char) regex))
|
|
|
|
(progn (forward-char 1)
|
|
|
|
t))))
|
|
|
|
(let ((tem (match-data)))
|
|
|
|
(rfc822-nuke-whitespace leave-space)
|
1998-03-14 04:52:14 +00:00
|
|
|
(set-match-data tem)
|
1990-01-17 00:48:36 +00:00
|
|
|
t)))
|
|
|
|
|
|
|
|
(defun rfc822-snarf-word ()
|
|
|
|
;; word is atom | quoted-string
|
|
|
|
(cond ((= (following-char) ?\")
|
|
|
|
;; quoted-string
|
|
|
|
(or (rfc822-looking-at "\"\\([^\"\\\n]\\|\\\\.\\|\\\\\n\\)*\"")
|
|
|
|
(rfc822-bad-address "Unterminated quoted string")))
|
1998-01-19 20:28:03 +00:00
|
|
|
((rfc822-looking-at "[^][\000-\037 ()<>@,;:\\\".]+")
|
1990-01-17 00:48:36 +00:00
|
|
|
;; atom
|
|
|
|
)
|
|
|
|
(t
|
|
|
|
(rfc822-bad-address "Rubbish in address"))))
|
|
|
|
|
|
|
|
(defun rfc822-snarf-words ()
|
|
|
|
(rfc822-snarf-word)
|
|
|
|
(while (rfc822-looking-at ?.)
|
|
|
|
(rfc822-snarf-word)))
|
|
|
|
|
|
|
|
(defun rfc822-snarf-subdomain ()
|
|
|
|
;; sub-domain is domain-ref | domain-literal
|
|
|
|
(cond ((= (following-char) ?\[)
|
|
|
|
;; domain-ref
|
|
|
|
(or (rfc822-looking-at "\\[\\([^][\\\n]\\|\\\\.\\|\\\\\n\\)*\\]")
|
|
|
|
(rfc822-bad-address "Unterminated domain literal [...]")))
|
1998-01-19 20:28:03 +00:00
|
|
|
((rfc822-looking-at "[^][\000-\037 ()<>@,;:\\\".]+")
|
1990-01-17 00:48:36 +00:00
|
|
|
;; domain-literal = atom
|
|
|
|
)
|
|
|
|
(t
|
|
|
|
(rfc822-bad-address "Rubbish in host/domain specification"))))
|
|
|
|
|
|
|
|
(defun rfc822-snarf-domain ()
|
|
|
|
(rfc822-snarf-subdomain)
|
|
|
|
(while (rfc822-looking-at ?.)
|
|
|
|
(rfc822-snarf-subdomain)))
|
|
|
|
|
|
|
|
(defun rfc822-snarf-frob-list (name separator terminator snarfer
|
|
|
|
&optional return)
|
|
|
|
(let ((first t)
|
|
|
|
(list ())
|
|
|
|
tem)
|
|
|
|
(while (cond ((eobp)
|
|
|
|
(rfc822-bad-address
|
|
|
|
(format "End of addresses in middle of %s" name)))
|
|
|
|
((rfc822-looking-at terminator)
|
|
|
|
nil)
|
|
|
|
((rfc822-looking-at separator)
|
|
|
|
;; multiple separators are allowed and do nothing.
|
|
|
|
(while (rfc822-looking-at separator))
|
|
|
|
t)
|
|
|
|
(first
|
|
|
|
t)
|
|
|
|
(t
|
|
|
|
(rfc822-bad-address
|
|
|
|
(format "Gubbish in middle of %s" name))))
|
|
|
|
(setq tem (funcall snarfer)
|
|
|
|
first nil)
|
|
|
|
(and return tem
|
|
|
|
(setq list (if (listp tem)
|
|
|
|
(nconc (reverse tem) list)
|
|
|
|
(cons tem list)))))
|
|
|
|
(nreverse list)))
|
|
|
|
|
|
|
|
;; return either an address (a string) or a list of addresses
|
|
|
|
(defun rfc822-addresses-1 (&optional allow-groups)
|
|
|
|
;; Looking for an rfc822 `address'
|
|
|
|
;; Either a group (1*word ":" [#mailbox] ";")
|
|
|
|
;; or a mailbox (addr-spec | 1*word route-addr)
|
|
|
|
;; addr-spec is (local-part "@" domain)
|
|
|
|
;; route-addr is ("<" [1#("@" domain) ":"] addr-spec ">")
|
|
|
|
;; local-part is (word *("." word))
|
|
|
|
;; word is (atom | quoted-string)
|
|
|
|
;; quoted-string is ("\([^\"\\n]\|\\.\|\\\n\)")
|
|
|
|
;; atom is [^\000-\037\177 ()<>@,;:\".[]]+
|
|
|
|
;; domain is sub-domain *("." sub-domain)
|
|
|
|
;; sub-domain is domain-ref | domain-literal
|
|
|
|
;; domain-literal is "[" *(dtext | quoted-pair) "]"
|
|
|
|
;; dtext is "[^][\\n"
|
|
|
|
;; domain-ref is atom
|
2003-12-29 19:59:24 +00:00
|
|
|
(let ((rfc822-address-start (point))
|
1990-01-17 00:48:36 +00:00
|
|
|
(n 0))
|
|
|
|
(catch 'address
|
|
|
|
;; optimize common cases:
|
|
|
|
;; foo
|
|
|
|
;; foo.bar@bar.zap
|
|
|
|
;; followed by "\\'\\|,\\|([^()\\]*)\\'"
|
|
|
|
;; other common cases are:
|
|
|
|
;; foo bar <foo.bar@baz.zap>
|
|
|
|
;; "foo bar" <foo.bar@baz.zap>
|
|
|
|
;; those aren't hacked yet.
|
1998-01-19 20:28:03 +00:00
|
|
|
(if (and (rfc822-looking-at "[^][\000-\037 ()<>@,;:\\\"]+\\(\\|@[^][\000-\037 ()<>@,;:\\\"]+\\)" t)
|
1990-01-17 00:48:36 +00:00
|
|
|
(progn (or (eobp)
|
|
|
|
(rfc822-looking-at ?,))))
|
|
|
|
(progn
|
|
|
|
;; rfc822-looking-at may have inserted a space
|
|
|
|
(or (bobp) (/= (preceding-char) ?\ ) (delete-char -1))
|
|
|
|
;; relying on the fact that rfc822-looking-at <char>
|
|
|
|
;; doesn't mung match-data
|
2003-12-29 19:59:24 +00:00
|
|
|
(throw 'address (buffer-substring rfc822-address-start (match-end 0)))))
|
|
|
|
(goto-char rfc822-address-start)
|
1990-01-17 00:48:36 +00:00
|
|
|
(while t
|
|
|
|
(cond ((and (= n 1) (rfc822-looking-at ?@))
|
|
|
|
;; local-part@domain
|
|
|
|
(rfc822-snarf-domain)
|
|
|
|
(throw 'address
|
2003-12-29 19:59:24 +00:00
|
|
|
(buffer-substring rfc822-address-start (point))))
|
1990-01-17 00:48:36 +00:00
|
|
|
((rfc822-looking-at ?:)
|
|
|
|
(cond ((not allow-groups)
|
|
|
|
(rfc822-bad-address "A group name may not appear here"))
|
|
|
|
((= n 0)
|
|
|
|
(rfc822-bad-address "No name for :...; group")))
|
|
|
|
;; group
|
|
|
|
(throw 'address
|
|
|
|
;; return a list of addresses
|
|
|
|
(rfc822-snarf-frob-list ":...; group" ?\, ?\;
|
|
|
|
'rfc822-addresses-1 t)))
|
|
|
|
((rfc822-looking-at ?<)
|
|
|
|
(let ((start (point))
|
|
|
|
(strip t))
|
|
|
|
(cond ((rfc822-looking-at ?>)
|
|
|
|
;; empty path
|
|
|
|
())
|
|
|
|
((and (not (eobp)) (= (following-char) ?\@))
|
|
|
|
;; <@foo.bar,@baz:quux@abcd.efg>
|
|
|
|
(rfc822-snarf-frob-list "<...> address" ?\, ?\:
|
|
|
|
(function (lambda ()
|
|
|
|
(if (rfc822-looking-at ?\@)
|
|
|
|
(rfc822-snarf-domain)
|
|
|
|
(rfc822-bad-address
|
|
|
|
"Gubbish in route-addr")))))
|
|
|
|
(rfc822-snarf-words)
|
|
|
|
(or (rfc822-looking-at ?@)
|
|
|
|
(rfc822-bad-address "Malformed <..@..> address"))
|
|
|
|
(rfc822-snarf-domain)
|
|
|
|
(setq strip nil))
|
|
|
|
((progn (rfc822-snarf-words) (rfc822-looking-at ?@))
|
|
|
|
; allow <foo> (losing unix seems to do this)
|
|
|
|
(rfc822-snarf-domain)))
|
|
|
|
(let ((end (point)))
|
|
|
|
(if (rfc822-looking-at ?\>)
|
|
|
|
(throw 'address
|
|
|
|
(buffer-substring (if strip start (1- start))
|
|
|
|
(if strip end (1+ end))))
|
|
|
|
(rfc822-bad-address "Unterminated <...> address")))))
|
1998-01-19 20:28:03 +00:00
|
|
|
((looking-at "[^][\000-\037 ()<>@,;:\\.]")
|
1990-01-17 00:48:36 +00:00
|
|
|
;; this allows "." to be part of the words preceding
|
|
|
|
;; an addr-spec, since many broken mailers output
|
|
|
|
;; "Hern K. Herklemeyer III
|
|
|
|
;; <yank@megadeath.dod.gods-own-country>"
|
1990-11-26 22:52:07 +00:00
|
|
|
(let ((again t))
|
|
|
|
(while again
|
|
|
|
(or (= n 0) (bobp) (= (preceding-char) ?\ )
|
|
|
|
(insert ?\ ))
|
1990-11-27 01:46:13 +00:00
|
|
|
(rfc822-snarf-words)
|
1990-11-26 22:52:07 +00:00
|
|
|
(setq n (1+ n))
|
|
|
|
(setq again (or (rfc822-looking-at ?.)
|
1998-01-19 20:28:03 +00:00
|
|
|
(looking-at "[^][\000-\037 ()<>@,;:\\.]"))))))
|
1990-01-17 00:48:36 +00:00
|
|
|
((= n 0)
|
|
|
|
(throw 'address nil))
|
|
|
|
((= n 1) ; allow "foo" (losing unix seems to do this)
|
|
|
|
(throw 'address
|
2003-12-29 19:59:24 +00:00
|
|
|
(buffer-substring rfc822-address-start (point))))
|
1990-11-26 22:52:07 +00:00
|
|
|
((> n 1)
|
|
|
|
(rfc822-bad-address "Missing comma between addresses or badly-formatted address"))
|
|
|
|
((or (eobp) (= (following-char) ?,))
|
1990-01-17 00:48:36 +00:00
|
|
|
(rfc822-bad-address "Missing comma or route-spec"))
|
|
|
|
(t
|
|
|
|
(rfc822-bad-address "Strange character or missing comma")))))))
|
|
|
|
|
2003-02-04 13:24:35 +00:00
|
|
|
|
1990-01-17 00:48:36 +00:00
|
|
|
(defun rfc822-addresses (header-text)
|
1998-01-19 20:28:03 +00:00
|
|
|
(if (string-match "\\`[ \t]*\\([^][\000-\037 ()<>@,;:\\\".]+\\)[ \t]*\\'"
|
1990-01-17 00:48:36 +00:00
|
|
|
header-text)
|
|
|
|
;; Make very simple case moderately fast.
|
|
|
|
(list (substring header-text (match-beginning 1) (match-end 1)))
|
|
|
|
(let ((buf (generate-new-buffer " rfc822")))
|
|
|
|
(unwind-protect
|
* url-util.el (url-insert-entities-in-string):
* url-nfs.el (url-nfs-unescape):
* url-ldap.el (url-ldap):
* url-imap.el (url-imap):
* url-cid.el (url-cid-gnus, url-cid): Use with-current-buffer.
* erc.el (erc-display-line-1, erc-process-away):
* erc-truncate.el (erc-truncate-buffer-to-size):
Use with-current-buffer.
* term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
* play/mpuz.el (mpuz-create-buffer):
* play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
(lm-print-y,s,noise, lm-print-w0, lm-init):
* play/gomoku.el (gomoku-prompt-for-move):
* play/fortune.el (fortune-in-buffer):
* play/dissociate.el (dissociated-press):
* play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
(decipher-analyze-buffer, decipher-stats-buffer,decipher-stats-buffer):
* mail/supercite.el (sc-eref-show):
* mail/smtpmail.el (smtpmail-send-it):
* mail/rmailsum.el (rmail-summary-next-labeled-message)
(rmail-summary-previous-labeled-message, rmail-summary-wipe)
(rmail-summary-undelete-many, rmail-summary-rmail-update)
(rmail-summary-goto-msg, rmail-summary-expunge)
(rmail-summary-get-new-mail, rmail-summary-search-backward)
(rmail-summary-add-label, rmail-summary-output-menu)
(rmail-summary-output-body):
* mail/rfc822.el (rfc822-addresses):
* mail/reporter.el (reporter-dump-variable, reporter-dump-state):
* mail/mailpost.el (post-mail-send-it):
* mail/hashcash.el (hashcash-generate-payment):
* mail/feedmail.el (feedmail-run-the-queue)
(feedmail-queue-send-edit-prompt-help-first)
(feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
(feedmail-deduce-address-list):
* eshell/esh-ext.el (eshell-remote-command):
* eshell/em-unix.el (eshell-occur-mode-mouse-goto):
* emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
(viper-wildcard-to-regexp, viper-glob-mswindows-files)
(viper-save-string-in-file, viper-valid-marker):
* emulation/viper-keym.el (viper-toggle-key):
* emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
(ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
(ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
* emulation/viper-cmd.el (viper-exec-form-in-vi)
(viper-exec-form-in-emacs, viper-brac-function):
* emulation/viper.el (viper-delocalize-var):
* emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
(vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
(vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
(ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
* emulation/vi.el (vi-switch-mode, vi-ex-cmd):
* emulation/edt.el (edt-electric-helpify):
* emulation/cua-rect.el (cua--rectangle-aux-replace):
* emulation/cua-gmrk.el (cua--insert-at-global-mark)
(cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
(cua-indent-to-global-mark-column):
* calendar/diary-lib.el (calendar-mark-1):
* calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
Use with-current-buffer.
* emulation/viper.el (viper-delocalize-var): Use dolist.
2009-11-03 02:04:29 +00:00
|
|
|
(with-current-buffer buf
|
|
|
|
(make-local-variable 'case-fold-search)
|
|
|
|
(setq case-fold-search nil) ;For speed(?)
|
|
|
|
(insert header-text)
|
|
|
|
;; unfold continuation lines
|
|
|
|
(goto-char (point-min))
|
1990-01-17 00:48:36 +00:00
|
|
|
|
* url-util.el (url-insert-entities-in-string):
* url-nfs.el (url-nfs-unescape):
* url-ldap.el (url-ldap):
* url-imap.el (url-imap):
* url-cid.el (url-cid-gnus, url-cid): Use with-current-buffer.
* erc.el (erc-display-line-1, erc-process-away):
* erc-truncate.el (erc-truncate-buffer-to-size):
Use with-current-buffer.
* term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
* play/mpuz.el (mpuz-create-buffer):
* play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
(lm-print-y,s,noise, lm-print-w0, lm-init):
* play/gomoku.el (gomoku-prompt-for-move):
* play/fortune.el (fortune-in-buffer):
* play/dissociate.el (dissociated-press):
* play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
(decipher-analyze-buffer, decipher-stats-buffer,decipher-stats-buffer):
* mail/supercite.el (sc-eref-show):
* mail/smtpmail.el (smtpmail-send-it):
* mail/rmailsum.el (rmail-summary-next-labeled-message)
(rmail-summary-previous-labeled-message, rmail-summary-wipe)
(rmail-summary-undelete-many, rmail-summary-rmail-update)
(rmail-summary-goto-msg, rmail-summary-expunge)
(rmail-summary-get-new-mail, rmail-summary-search-backward)
(rmail-summary-add-label, rmail-summary-output-menu)
(rmail-summary-output-body):
* mail/rfc822.el (rfc822-addresses):
* mail/reporter.el (reporter-dump-variable, reporter-dump-state):
* mail/mailpost.el (post-mail-send-it):
* mail/hashcash.el (hashcash-generate-payment):
* mail/feedmail.el (feedmail-run-the-queue)
(feedmail-queue-send-edit-prompt-help-first)
(feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
(feedmail-deduce-address-list):
* eshell/esh-ext.el (eshell-remote-command):
* eshell/em-unix.el (eshell-occur-mode-mouse-goto):
* emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
(viper-wildcard-to-regexp, viper-glob-mswindows-files)
(viper-save-string-in-file, viper-valid-marker):
* emulation/viper-keym.el (viper-toggle-key):
* emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
(ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
(ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
* emulation/viper-cmd.el (viper-exec-form-in-vi)
(viper-exec-form-in-emacs, viper-brac-function):
* emulation/viper.el (viper-delocalize-var):
* emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
(vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
(vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
(ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
* emulation/vi.el (vi-switch-mode, vi-ex-cmd):
* emulation/edt.el (edt-electric-helpify):
* emulation/cua-rect.el (cua--rectangle-aux-replace):
* emulation/cua-gmrk.el (cua--insert-at-global-mark)
(cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
(cua-indent-to-global-mark-column):
* calendar/diary-lib.el (calendar-mark-1):
* calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
Use with-current-buffer.
* emulation/viper.el (viper-delocalize-var): Use dolist.
2009-11-03 02:04:29 +00:00
|
|
|
(while (re-search-forward "\\([^\\]\\(\\\\\\\\\\)*\\)\n[ \t]"
|
|
|
|
nil t)
|
|
|
|
(replace-match "\\1 " t))
|
1990-01-17 00:48:36 +00:00
|
|
|
|
* url-util.el (url-insert-entities-in-string):
* url-nfs.el (url-nfs-unescape):
* url-ldap.el (url-ldap):
* url-imap.el (url-imap):
* url-cid.el (url-cid-gnus, url-cid): Use with-current-buffer.
* erc.el (erc-display-line-1, erc-process-away):
* erc-truncate.el (erc-truncate-buffer-to-size):
Use with-current-buffer.
* term/ns-win.el (ns-scroll-bar-move, ns-face-at-pos):
* play/mpuz.el (mpuz-create-buffer):
* play/landmark.el (lm-prompt-for-move, lm-print-wts, lm-print-smell)
(lm-print-y,s,noise, lm-print-w0, lm-init):
* play/gomoku.el (gomoku-prompt-for-move):
* play/fortune.el (fortune-in-buffer):
* play/dissociate.el (dissociated-press):
* play/decipher.el (decipher-adjacency-list, decipher-display-regexp)
(decipher-analyze-buffer, decipher-stats-buffer,decipher-stats-buffer):
* mail/supercite.el (sc-eref-show):
* mail/smtpmail.el (smtpmail-send-it):
* mail/rmailsum.el (rmail-summary-next-labeled-message)
(rmail-summary-previous-labeled-message, rmail-summary-wipe)
(rmail-summary-undelete-many, rmail-summary-rmail-update)
(rmail-summary-goto-msg, rmail-summary-expunge)
(rmail-summary-get-new-mail, rmail-summary-search-backward)
(rmail-summary-add-label, rmail-summary-output-menu)
(rmail-summary-output-body):
* mail/rfc822.el (rfc822-addresses):
* mail/reporter.el (reporter-dump-variable, reporter-dump-state):
* mail/mailpost.el (post-mail-send-it):
* mail/hashcash.el (hashcash-generate-payment):
* mail/feedmail.el (feedmail-run-the-queue)
(feedmail-queue-send-edit-prompt-help-first)
(feedmail-send-it-immediately, feedmail-give-it-to-buffer-eater)
(feedmail-deduce-address-list):
* eshell/esh-ext.el (eshell-remote-command):
* eshell/em-unix.el (eshell-occur-mode-mouse-goto):
* emulation/viper-util.el (viper-glob-unix-files, viper-save-setting)
(viper-wildcard-to-regexp, viper-glob-mswindows-files)
(viper-save-string-in-file, viper-valid-marker):
* emulation/viper-keym.el (viper-toggle-key):
* emulation/viper-ex.el (ex-expand-filsyms, viper-get-ex-file)
(ex-edit, ex-global, ex-mark, ex-next-related-buffer, ex-quit)
(ex-get-inline-cmd-args, ex-tag, ex-command, ex-compile):
* emulation/viper-cmd.el (viper-exec-form-in-vi)
(viper-exec-form-in-emacs, viper-brac-function):
* emulation/viper.el (viper-delocalize-var):
* emulation/vip.el (vip-mode, vip-get-ex-token, vip-ex, vip-get-ex-pat)
(vip-get-ex-command, vip-get-ex-opt-gc, vip-get-ex-buffer)
(vip-get-ex-count, vip-get-ex-file, ex-edit, ex-global, ex-mark)
(ex-map, ex-unmap, ex-quit, ex-read, ex-tag, ex-command):
* emulation/vi.el (vi-switch-mode, vi-ex-cmd):
* emulation/edt.el (edt-electric-helpify):
* emulation/cua-rect.el (cua--rectangle-aux-replace):
* emulation/cua-gmrk.el (cua--insert-at-global-mark)
(cua--delete-at-global-mark, cua--copy-rectangle-to-global-mark)
(cua-indent-to-global-mark-column):
* calendar/diary-lib.el (calendar-mark-1):
* calendar/cal-hebrew.el (calendar-hebrew-mark-date-pattern):
Use with-current-buffer.
* emulation/viper.el (viper-delocalize-var): Use dolist.
2009-11-03 02:04:29 +00:00
|
|
|
(goto-char (point-min))
|
2010-03-08 16:17:30 +00:00
|
|
|
;; Give `rfc822-address-start' a non-nil initial value to
|
|
|
|
;; prevent `rfc822-bad-address' from raising a
|
|
|
|
;; `wrong-type-argument' error.
|
|
|
|
(let* ((rfc822-address-start (point))
|
|
|
|
list tem
|
|
|
|
(err
|
|
|
|
(catch 'address
|
|
|
|
;; Note that `rfc822-nuke-whitespace' and
|
|
|
|
;; `rfc822-looking-at' can throw.
|
|
|
|
(rfc822-nuke-whitespace)
|
|
|
|
(while (not (eobp))
|
|
|
|
(setq rfc822-address-start (point))
|
|
|
|
(setq tem
|
|
|
|
(cond ((rfc822-looking-at ?\,)
|
|
|
|
nil)
|
|
|
|
((looking-at "[][\000-\037@;:\\.>)]")
|
|
|
|
(forward-char)
|
|
|
|
(catch 'address ; For rfc822-bad-address
|
|
|
|
(rfc822-bad-address
|
|
|
|
(format "Strange character \\%c found"
|
|
|
|
(preceding-char)))))
|
|
|
|
(t
|
|
|
|
(rfc822-addresses-1 t))))
|
|
|
|
(cond ((null tem))
|
|
|
|
((stringp tem)
|
|
|
|
(setq list (cons tem list)))
|
|
|
|
(t
|
|
|
|
(setq list (nconc (nreverse tem) list)))))
|
|
|
|
nil)))
|
|
|
|
(nreverse (append (if err (list err)) list))))
|
2008-09-24 17:56:13 +00:00
|
|
|
(and buf (kill-buffer buf))))))
|
1990-01-17 00:48:36 +00:00
|
|
|
|
1992-03-16 20:39:07 +00:00
|
|
|
(provide 'rfc822)
|
|
|
|
|
1992-05-30 21:11:25 +00:00
|
|
|
;;; rfc822.el ends here
|