emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/winner.el,v


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/winner.el,v
Date: Tue, 25 Dec 2007 22:47:35 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Richard M. Stallman <rms>       07/12/25 22:47:35

Index: winner.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/winner.el,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -b -r1.35 -r1.36
--- winner.el   25 Dec 2007 19:21:38 -0000      1.35
+++ winner.el   25 Dec 2007 22:47:35 -0000      1.36
@@ -46,9 +46,9 @@
 
 
 (defmacro winner-active-region ()
-  (if (fboundp 'region-active-p)
-      '(region-active-p)
-    'mark-active))
+  (if (boundp 'mark-active)
+      'mark-active
+    '(region-active-p)))
 
 (defsetf winner-active-region () (store)
   (if (fboundp 'zmacs-activate-region)




reply via email to

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