comparison lisp/tm/tm-edit.el @ 80:1ce6082ce73f r20-0b90

Import from CVS: tag r20-0b90
author cvs
date Mon, 13 Aug 2007 09:06:37 +0200
parents c7528f8e288d
children 6a378aca36af
comparison
equal deleted inserted replaced
79:5b0a5bbffab6 80:1ce6082ce73f
4 4
5 ;; Author: UMEDA Masanobu <umerin@mse.kyutech.ac.jp> 5 ;; Author: UMEDA Masanobu <umerin@mse.kyutech.ac.jp>
6 ;; MORIOKA Tomohiko <morioka@jaist.ac.jp> 6 ;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
7 ;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp> 7 ;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
8 ;; Created: 1994/08/21 renamed from mime.el 8 ;; Created: 1994/08/21 renamed from mime.el
9 ;; Version: $Revision: 1.3 $ 9 ;; Version: $Revision: 1.4 $
10 ;; Keywords: mail, news, MIME, multimedia, multilingual 10 ;; Keywords: mail, news, MIME, multimedia, multilingual
11 11
12 ;; This file is part of tm (Tools for MIME). 12 ;; This file is part of tm (Tools for MIME).
13 13
14 ;; This program is free software; you can redistribute it and/or 14 ;; This program is free software; you can redistribute it and/or
94 ;; 94 ;;
95 ;;--[[text/plain]] 95 ;;--[[text/plain]]
96 ;; This is also a plain text. But, it is explicitly specified as is. 96 ;; This is also a plain text. But, it is explicitly specified as is.
97 ;; 97 ;;
98 ;;--[[text/plain; charset=ISO-2022-JP]] 98 ;;--[[text/plain; charset=ISO-2022-JP]]
99 ;; これは charset を ISO-2022-JP に指定した日本語の plain テキストです.
100 ;; 99 ;;
101 ;;--[[text/richtext]] 100 ;;--[[text/richtext]]
102 ;; <center>This is a richtext.</center> 101 ;; <center>This is a richtext.</center>
103 ;; 102 ;;
104 ;;--[[image/gif][base64]]^M...image encoded in base64 comes here... 103 ;;--[[image/gif][base64]]^M...image encoded in base64 comes here...
118 117
119 ;;; @ version 118 ;;; @ version
120 ;;; 119 ;;;
121 120
122 (defconst mime-editor/RCS-ID 121 (defconst mime-editor/RCS-ID
123 "$Id: tm-edit.el,v 1.3 1997/01/03 03:10:30 steve Exp $") 122 "$Id: tm-edit.el,v 1.4 1997/01/11 20:14:11 steve Exp $")
124 123
125 (defconst mime-editor/version (get-version-string mime-editor/RCS-ID)) 124 (defconst mime-editor/version (get-version-string mime-editor/RCS-ID))
126 125
127 (defconst mime-editor/version-name 126 (defconst mime-editor/version-name
128 (concat "tm-edit " mime-editor/version)) 127 (concat "tm-edit " mime-editor/version))
748 into text/plain. 747 into text/plain.
749 --[[text/plain]] 748 --[[text/plain]]
750 This is also a plain text. But, it is explicitly specified as 749 This is also a plain text. But, it is explicitly specified as
751 is. 750 is.
752 --[[text/plain; charset=ISO-2022-JP]] 751 --[[text/plain; charset=ISO-2022-JP]]
753 ...Japanese text here.... 752 ... Japanese text here ...
754 --[[text/richtext]] 753 --[[text/richtext]]
755 <center>This is a richtext.</center> 754 <center>This is a richtext.</center>
756 --[[image/gif][base64]]^M...image encoded in base64 here... 755 --[[image/gif][base64]]^M...image encoded in base64 here...
757 --[[audio/basic][base64]]^M...audio encoded in base64 here... 756 --[[audio/basic][base64]]^M...audio encoded in base64 here...
758 757