X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/c88ab9ce4a0dbacb1f5bd272c1e7419f1e0f4b9d..16f45d1b8d556362a0668f192e4453f126946b1c:/lisp/mail/rfc822.el diff --git a/lisp/mail/rfc822.el b/lisp/mail/rfc822.el index 2a67e4e69b..178dd943cb 100644 --- a/lisp/mail/rfc822.el +++ b/lisp/mail/rfc822.el @@ -1,13 +1,16 @@ ;;; rfc822.el --- hairy rfc822 parser for mail and news and suchlike -;; Copyright (C) 1986-1990 Free Software Foundation, Inc. -;; Author Richard Mlynarik. +;; Copyright (C) 1986, 87, 1990 Free Software Foundation, Inc. + +;; Author: Richard Mlynarik +;; Maintainer: FSF +;; Keywords: mail ;; This file is part of GNU Emacs. ;; GNU Emacs is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 1, or (at your option) +;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; GNU Emacs is distributed in the hope that it will be useful, @@ -16,8 +19,16 @@ ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to -;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. +;; along with GNU Emacs; see the file COPYING. If not, write to the +;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, +;; Boston, MA 02111-1307, USA. + +;;; Commentary: + +;; Support functions for parsing RFC-822 headers, used by mail and news +;; modes. + +;;; Code: ;; uses address-start free, throws to address (defun rfc822-bad-address (reason) @@ -38,7 +49,7 @@ (setq losers (cdr losers)))) (goto-char (point-min)) (insert "(Unparsable address -- " reason - ":\n\t \"") + ": \"") (goto-char (point-max)) (insert "\")")) (rfc822-nuke-whitespace) (throw 'address (buffer-substring address-start (point))))