comparison lisp/mel/mel.el @ 155:43dd3413c7c7 r20-3b4

Import from CVS: tag r20-3b4
author cvs
date Mon, 13 Aug 2007 09:39:39 +0200
parents fe104dbd9147
children 6075d714658b
comparison
equal deleted inserted replaced
154:94141801dd7e 155:43dd3413c7c7
3 ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc. 3 ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc.
4 4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp> 5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; modified by Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp> 6 ;; modified by Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
7 ;; Created: 1995/6/25 7 ;; Created: 1995/6/25
8 ;; Version: $Id: mel.el,v 1.3 1997/03/16 03:05:15 steve Exp $ 8 ;; Version: $Id: mel.el,v 1.4 1997/06/06 00:57:15 steve Exp $
9 ;; Keywords: MIME, Base64, Quoted-Printable, uuencode, gzip64 9 ;; Keywords: MIME, Base64, Quoted-Printable, uuencode, gzip64
10 10
11 ;; This file is part of MEL (MIME Encoding Library). 11 ;; This file is part of MEL (MIME Encoding Library).
12 12
13 ;; This program is free software; you can redistribute it and/or 13 ;; This program is free software; you can redistribute it and/or
113 113
114 114
115 ;;; @ file 115 ;;; @ file
116 ;;; 116 ;;;
117 117
118 (autoload 'base64-insert-encoded-file 118 (autoload 'base64-insert-encoded-file "mel-b"
119 "mel-b" "Insert file encoded by base64." t) 119 "Encode contents of file to base64, and insert the result." t)
120 (autoload 'quoted-printable-insert-encoded-file 120 (autoload 'quoted-printable-insert-encoded-file "mel-q"
121 "mel-q" "Insert file encoded by quoted-printable." t) 121 "Encode contents of file to quoted-printable, and insert the result." t)
122 (autoload 'uuencode-insert-encoded-file 122 (autoload 'uuencode-insert-encoded-file
123 "mel-u" "Insert file encoded by unofficial uuencode format." t) 123 "mel-u" "Insert file encoded by unofficial uuencode format." t)
124 (autoload 'gzip64-insert-encoded-file 124 (autoload 'gzip64-insert-encoded-file
125 "mel-g" "Insert file encoded by unofficial gzip64 format." t) 125 "mel-g" "Insert file encoded by unofficial gzip64 format." t)
126 126
153 153
154 154
155 ;;; @ string 155 ;;; @ string
156 ;;; 156 ;;;
157 157
158 (autoload 'base64-encode-string "mel-b") 158 (autoload 'base64-encode-string "mel-b"
159 (autoload 'base64-decode-string "mel-b") 159 "Encode STRING to base64, and return the result.")
160 (autoload 'base64-decode-string "mel-b"
161 "Decode STRING which is encoded in base64, and return the result.")
162 (autoload 'quoted-printable-encode-string "mel-q"
163 "Encode STRING to quoted-printable, and return the result.")
164 (autoload 'quoted-printable-decode-string "mel-q"
165 "Decode STRING which is encoded in quoted-printable, and return the result.")
160 166
161 (autoload 'q-encoding-encode-string-for-text "mel-q") 167 (autoload 'q-encoding-encode-string "mel-q"
162 (autoload 'q-encoding-encode-string-for-comment "mel-q") 168 "Encode STRING to Q-encoding of encoded-word, and return the result.")
163 (autoload 'q-encoding-encode-string-for-phrase "mel-q") 169 (autoload 'q-encoding-decode-string "mel-q"
164 (autoload 'q-encoding-encode-string "mel-q") 170 "Decode STRING which is encoded in Q-encoding and return the result.")
165 (autoload 'q-encoding-decode-string "mel-q")
166 171
167 (autoload 'base64-encoded-length "mel-b") 172 (autoload 'base64-encoded-length "mel-b")
168 (autoload 'q-encoding-encoded-length "mel-q") 173 (autoload 'q-encoding-encoded-length "mel-q")
169 174
170 175