tm 6.76.1.
[elisp/tm.git] / tm-rich.el
index bce5ef9..7827746 100644 (file)
@@ -1,17 +1,19 @@
 ;;;
-;;; $Id: tm-rich.el,v 6.8 1995/07/17 22:30:36 morioka Exp $
+;;; $Id: tm-rich.el,v 6.10 1995/08/05 00:55:37 morioka Exp $
 ;;;
 ;;; by MORIOKA Tomohiko  <morioka@jaist.ac.jp>
 ;;;
 
 (require 'tm-view)
-(if (or (< emacs-major-version 19)
-       (and (= emacs-major-version 19)
-            (< emacs-minor-version 29))
-       )
-    (require 'tinyrich)
-  (require 'richtext)
-  )
+
+(defvar tm-rich/richtext-module
+  (if (or (< emacs-major-version 19)
+         (and (= emacs-major-version 19)
+              (< emacs-minor-version 29))
+         )
+      'tinyrich
+    'richtext))
+(require tm-rich/richtext-module)
 
 
 ;;; @ content filters for tm-view
@@ -58,4 +60,4 @@
 
 (run-hooks 'tm-rich-load-hook)
 
-(provide 'richtext)
+(provide 'tm-rich)