Does the following patch fix it?

--- meta-mode.el	22 Aug 2004 12:39:49 +0200	1.10
+++ meta-mode.el	18 Feb 2005 15:10:07 +0100	
@@ -898,7 +898,7 @@
 ;; Compatibility: XEmacs doesn't have the  `mark-active' variable.
 (defun meta-mark-active ()
   "Return whether the mark and region are currently active in this buffer."
-  (or (and (boundp 'mark-active) mark-active) (mark)))
+  (if (boundp 'mark-active) mark-active (mark)))
 
 
 

-- 
David Kastrup, Kriemhildstr. 15, 44793 Bochum
_______________________________________________
Emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to