From: tmorioka Date: Thu, 27 Feb 1997 08:58:13 +0000 (+0000) Subject: fixed DOC string. X-Git-Tag: Hokutetsu-Ishikawa-new~247 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee7fbc33c3e3b47da4474b31c4dc2496d373f4f6;p=elisp%2Fsemi.git fixed DOC string. --- diff --git a/mime-def.el b/mime-def.el index 521fecb..958a37f 100644 --- a/mime-def.el +++ b/mime-def.el @@ -3,7 +3,7 @@ ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc. ;; Author: MORIOKA Tomohiko -;; Version: $Id: mime-def.el,v 0.28 1997-02-27 08:55:59 tmorioka Exp $ +;; Version: $Id: mime-def.el,v 0.29 1997-02-27 08:58:13 tmorioka Exp $ ;; Keywords: definition, MIME, multimedia, mail, news ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces). @@ -124,34 +124,34 @@ cs))) (defun detect-mime-charset-region (start end) - "Return MIME charset for region between START and END. [emu-e20.el]" + "Return MIME charset for region between START and END." (charsets-to-mime-charset (find-charset-string (buffer-substring start end)) )) (defun encode-mime-charset-region (start end charset) - "Encode the text between START and END as MIME CHARSET. [emu-e20.el]" + "Encode the text between START and END as MIME CHARSET." (let ((cs (mime-charset-to-coding-system charset))) (if cs (encode-coding-region start end cs) ))) (defun decode-mime-charset-region (start end charset) - "Decode the text between START and END as MIME CHARSET. [emu-e20.el]" + "Decode the text between START and END as MIME CHARSET." (let ((cs (mime-charset-to-coding-system charset))) (if cs (decode-coding-region start end cs) ))) (defun encode-mime-charset-string (string charset) - "Encode the STRING as MIME CHARSET. [emu-e20.el]" + "Encode the STRING as MIME CHARSET." (let ((cs (mime-charset-to-coding-system charset))) (if cs (encode-coding-string string cs) string))) (defun decode-mime-charset-string (string charset) - "Decode the STRING as MIME CHARSET. [emu-e20.el]" + "Decode the STRING as MIME CHARSET." (let ((cs (mime-charset-to-coding-system charset))) (if cs (decode-coding-string string cs)