From: akr Date: Sat, 25 Apr 1998 09:16:17 +0000 (+0000) Subject: * eword-decode.el (eword-decode-string): Fix arguments order to calling X-Git-Tag: flam-1_1_0~2 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=1db53190289c3b9448dc5c06adc76af0ae963637;p=elisp%2Fflim.git * eword-decode.el (eword-decode-string): Fix arguments order to calling `eword-decode-unstructured'. (eword-decode-region): Fix arguments order to calling `eword-decode-unstructured'. --- diff --git a/ChangeLog b/ChangeLog index 9854d5f..8518892 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 1998-04-25 Tanaka Akira + * eword-decode.el (eword-decode-string): Fix arguments order to calling + `eword-decode-unstructured'. + (eword-decode-region): Fix arguments order to calling + `eword-decode-unstructured'. + +1998-04-25 Tanaka Akira + * eword-decode.el (eword-decode-first-encoded-words): Update DOC-string. (eword-decode-first-encoded-words): Update DOC-string. (eword-decode-unstructured): Argument `code-conversion' is now required. diff --git a/eword-decode.el b/eword-decode.el index 4f11e6b..a3d729e 100644 --- a/eword-decode.el +++ b/eword-decode.el @@ -333,8 +333,8 @@ mime-charset, it decodes non-ASCII bit patterns as the mime-charset. Otherwise it decodes non-ASCII bit patterns as the default-mime-charset." (eword-decode-unstructured - code-conversion (std11-unfold-string string) + code-conversion must-unfold)) @@ -363,8 +363,8 @@ default-mime-charset." (eword-decode-unfold) ) (let ((str (eword-decode-unstructured - code-conversion (buffer-substring (point-min) (point-max)) + code-conversion must-unfold))) (delete-region (point-min) (point-max)) (insert str)))))