From: morioka Date: Sat, 14 Sep 1996 08:42:39 +0000 (+0000) Subject: (std11-strip-quoted-string): fixed a typo. X-Git-Tag: XEmacs-20_3-b6~25 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=46002b779c0788c2d94e57fb7aef217ce8291547;p=elisp%2Fapel.git (std11-strip-quoted-string): fixed a typo. --- diff --git a/std11.el b/std11.el index bc7e870..5c06146 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.32 1996-09-14 08:41:00 morioka Exp $ +;; Version: $Id: std11.el,v 0.33 1996-09-14 08:42:39 morioka Exp $ ;; This file is part of MU (Message Utilities). @@ -236,7 +236,7 @@ If BOUNDARY is not nil, it is used as message header separator. (if (and (eq (aref string 0) ?\") (eq (aref string max) ?\") ) - (substring str 1 max) + (substring string 1 max) string) )))