From 934a8e77af07f373945b69ddf27e1fc6d06aec26 Mon Sep 17 00:00:00 2001 From: morioka Date: Mon, 25 Aug 1997 17:14:05 +0000 Subject: [PATCH] (eword-lexical-analyze): Use `last*' instead of `last' (for Emacs 20.0.96). --- eword-decode.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eword-decode.el b/eword-decode.el index 30df1a8..3c7696b 100644 --- a/eword-decode.el +++ b/eword-decode.el @@ -10,7 +10,7 @@ ;; Renamed: 1993/06/03 to tiny-mime.el ;; Renamed: 1995/10/03 from tiny-mime.el (split off encoder) ;; Renamed: 1997/02/22 from tm-ew-d.el -;; Version: $Revision: 0.17 $ +;; Version: $Revision: 0.18 $ ;; Keywords: encoded-word, MIME, multilingual, header, mail, news ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces). @@ -41,7 +41,7 @@ ;;; (defconst eword-decode-RCS-ID - "$Id: eword-decode.el,v 0.17 1997-07-23 02:19:39 morioka Exp $") + "$Id: eword-decode.el,v 0.18 1997-08-25 17:14:05 morioka Exp $") (defconst eword-decode-version (get-version-string eword-decode-RCS-ID)) @@ -381,8 +381,8 @@ characters encoded as encoded-words or invalid \"raw\" format. (setq ret (eword-lexical-analyze-internal key must-unfold)) (setq eword-lexical-analyze-cache (cons (cons key ret) - (last eword-lexical-analyze-cache - eword-lexical-analyze-cache-max))) + (last* eword-lexical-analyze-cache + eword-lexical-analyze-cache-max))) ret))) (defun eword-decode-structured-field-body (string &optional must-unfold) -- 1.7.10.4