File: rail-mime-example-1-13.el

package info (click to toggle)
rail 1.2.12-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 328 kB
  • sloc: lisp: 854; perl: 116; makefile: 60; sh: 23
file content (48 lines) | stat: -rw-r--r-- 1,855 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
;;; rail-mime-example-1-13.el --- Replace Agent-string Internal Library

;; Copyright (C) 2000 by Free Software Foundation, Inc.

;; Author: SHIMADA Mitsunobu <simm-emacs@fan.gr.jp>
;; Keywords: ~/.mime-example, SEMI-1_13, Rail

;; This file is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

;; This file is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

;;; Commentary:

;; 

;;; Code:

(require 'rail-mime-example)

(defun rail-mime-example-1-13-setup ()
  (cond ((and (fboundp 'mime-save-acting-situation-examples)
	      (boundp  'emacs-major-version)
	      (<= 20 emacs-major-version))
	 (defun rail-mime-save-acting-situation-examples ()
	   (let ((coding-system-for-write 'ctext))
	     (rail-mime-example-save-primitive 'rail-mime-save-acting-situation-examples-original)))
	 (rail-mime-example-make-funcs 'mime-save-acting-situation-examples))
	((and (fboundp 'mime-save-acting-situation-examples)
	      (boundp  'MULE))
	 (defun rail-mime-save-acting-situation-examples ()
	   (let ((flie-coding-system *ctext*))
	     (rail-mime-example-save-primitive 'rail-mime-save-acting-situation-examples-original)))
	 (rail-mime-example-make-funcs 'mime-save-acting-situation-examples))))

(provide 'rail-mime-example-1-13)

;;; rail-mime-example-1-13.el ends here