use `mark-active' when defined.
+2005-02-18 David Kastrup <dak@gnu.org>
+
+ * progmodes/meta-mode.el (meta-mark-active): Fix condition to just
+ use `mark-active' when defined.
+
2005-02-18 Kenichi Handa <handa@m17n.org>
* ps-print.el (ps-font-info-database): New entry
;; 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)))
\f