From: yamaoka Date: Mon, 27 Feb 2012 23:30:05 +0000 (+0000) Subject: mu-cite.el (mu-cite-remove-text-properties): Fix mismatched paren in XEmacs part. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=b9098ad56a73897630078d6e66eb84325a68e888;p=elisp%2Fmu-cite.git mu-cite.el (mu-cite-remove-text-properties): Fix mismatched paren in XEmacs part. --- diff --git a/ChangeLog b/ChangeLog index b3f7f8a..e546649 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-02-28 Katsumi Yamaoka + + * mu-cite.el (mu-cite-remove-text-properties): Fix mismatched paren in + XEmacs part. + 2010-06-21 Katsumi Yamaoka * MU-CFG: Don't load poe twice; add emu subdirectory to load-path diff --git a/mu-cite.el b/mu-cite.el index 38508bd..0d92d77 100644 --- a/mu-cite.el +++ b/mu-cite.el @@ -73,8 +73,8 @@ (cond ((featurep 'xemacs) `(let ((string (copy-sequence ,string))) (map-extents (function (lambda (extent maparg) - (delete-extent extent)) - string 0 (length string))) + (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.