Fixed about definition of visible/invisible functions for XEmacs.
authortmorioka <tmorioka>
Sat, 1 Mar 1997 03:48:34 +0000 (03:48 +0000)
committertmorioka <tmorioka>
Sat, 1 Mar 1997 03:48:34 +0000 (03:48 +0000)
mime-edit.el

index d0ee4a5..0bf47b3 100644 (file)
@@ -7,7 +7,7 @@
 ;; Maintainer: MORIOKA Tomohiko <morioka@jaist.ac.jp>
 ;; Created: 1994/08/21 renamed from mime.el
 ;;     Renamed: 1997/2/21 from tm-edit.el
-;; Version: $Revision: 0.52 $
+;; Version: $Revision: 0.53 $
 ;; Keywords: MIME, multimedia, multilingual, mail, news
 
 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
 ;;;
 
 (defconst mime-edit-RCS-ID
-  "$Id: mime-edit.el,v 0.52 1997-03-01 03:39:01 tmorioka Exp $")
+  "$Id: mime-edit.el,v 0.53 1997-03-01 03:48:34 tmorioka Exp $")
 
 (defconst mime-edit-version (get-version-string mime-edit-RCS-ID))
 
@@ -690,18 +690,18 @@ Tspecials means any character that matches with it in header must be quoted.")
           )
         (get-text-property pos 'invisible)
         )
+       (defun next-visible-point (pos)
+        (save-excursion
+          (if (save-excursion
+                (goto-char pos)
+                (eq (following-char) ?\n)
+                )
+              (setq pos (1+ pos))
+            )
+          (or (next-single-property-change pos 'invisible)
+              (point-max))
+          ))
        )
-      (defun next-visible-point (pos)
-       (save-excursion
-         (if (save-excursion
-               (goto-char pos)
-               (eq (following-char) ?\n)
-               )
-             (setq pos (1+ pos))
-           )
-         (or (next-single-property-change pos 'invisible)
-             (point-max))
-         ))
       (t
        (defun invisible-region (start end)
         (if (save-excursion