* mu-cite.el (mu-cite-remove-text-properties): Make it to work with XEmacs.
authoryamaoka <yamaoka>
Thu, 19 Apr 2001 05:21:06 +0000 (05:21 +0000)
committeryamaoka <yamaoka>
Thu, 19 Apr 2001 05:21:06 +0000 (05:21 +0000)
ChangeLog
mu-cite.el

index e6c7151..9714ebd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-04-19  Katsumi Yamaoka   <yamaoka@jpl.org>
+
+       * mu-cite.el (mu-cite-remove-text-properties): Make it to work with
+       XEmacs.
+
 2001-03-22  NISHIDA Masakazu  <m_nisida@ca2.so-net.ne.jp>
 
        * mu-register.el (mu-cite-get-prefix-register-verbose-method):
index 23f3e36..c125289 100644 (file)
 
 (defmacro mu-cite-remove-text-properties (string)
   "Remove text properties from STRING which is read from minibuffer."
-  (if (or (featurep 'xemacs)
-         (boundp 'minibuffer-allow-text-properties);; Emacs 20.1 or later.
-         (not (fboundp 'set-text-properties)));; under Emacs 19.7.
-      string
-    (` (let ((obj (copy-sequence (, string))))
-        (set-text-properties 0 (length obj) nil obj)
-        obj))))
+  (cond ((featurep 'xemacs)
+        (` (let ((string (copy-sequence (, string))))
+             (map-extents (function (lambda (extent maparg)
+                                      (delete-extent extent))
+                                    string 0 (length string)))
+             string)))
+       ((or (boundp 'minibuffer-allow-text-properties);; Emacs 20.1 or later.
+            (not (fboundp 'set-text-properties)));; under Emacs 19.7.
+        string)
+       (t
+        (` (let ((string (copy-sequence (, string))))
+             (set-text-properties 0 (length string) nil string)
+             string)))))
 
 
 ;;; @ set up