From 9d717a5765cb60c2a46bed1bd80c4eb82b6ee399 Mon Sep 17 00:00:00 2001 From: morioka Date: Wed, 28 Aug 1996 21:03:14 +0000 Subject: [PATCH] (std11-addr-to-string): eliminate comments. --- std11.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/std11.el b/std11.el index 33c8588..34f1545 100644 --- a/std11.el +++ b/std11.el @@ -4,7 +4,7 @@ ;; Author: MORIOKA Tomohiko ;; Keywords: mail, news, RFC 822, STD 11 -;; Version: $Id: std11.el,v 0.19 1996-08-28 21:01:41 morioka Exp $ +;; Version: $Id: std11.el,v 0.20 1996-08-28 21:03:14 morioka Exp $ ;; This file is part of tl (Tiny Library). @@ -195,7 +195,10 @@ If BOUNDARY is not nil, it is used as message header separator. (defun std11-addr-to-string (seq) (mapconcat (function (lambda (token) - (if (eq (car token) 'spaces) + (if (let ((name (car token))) + (or (eq name 'spaces) + (eq name 'comment) + )) "" (cdr token) ))) -- 1.7.10.4