emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/meta-mode.el


From: David Kastrup
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/meta-mode.el
Date: Fri, 18 Feb 2005 09:28:26 -0500

Index: emacs/lisp/progmodes/meta-mode.el
diff -c emacs/lisp/progmodes/meta-mode.el:1.10 
emacs/lisp/progmodes/meta-mode.el:1.11
*** emacs/lisp/progmodes/meta-mode.el:1.10      Sun Aug 22 11:03:22 2004
--- emacs/lisp/progmodes/meta-mode.el   Fri Feb 18 14:28:24 2005
***************
*** 898,904 ****
  ;; 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)))
  
  
  
--- 898,904 ----
  ;; 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."
!   (if (boundp 'mark-active) mark-active (mark)))
  
  
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]