aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/cvs-status.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/cvs-status.el b/lisp/cvs-status.el
index b89bc6d2867..b7cfdff9d3c 100644
--- a/lisp/cvs-status.el
+++ b/lisp/cvs-status.el
@@ -5,7 +5,7 @@
5;; Author: Stefan Monnier <monnier@cs.yale.edu> 5;; Author: Stefan Monnier <monnier@cs.yale.edu>
6;; Keywords: pcl-cvs cvs status tree 6;; Keywords: pcl-cvs cvs status tree
7;; Version: $Name: $ 7;; Version: $Name: $
8;; Revision: $Id: cvs-status.el,v 1.2 2000/03/22 01:01:36 monnier Exp $ 8;; Revision: $Id: cvs-status.el,v 1.3 2000/03/22 01:08:08 monnier Exp $
9 9
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11 11
@@ -142,8 +142,7 @@
142 (cons 142 (cons
143 (cons (cvs-status-current-file) 143 (cons (cvs-status-current-file)
144 (cvs-status-current-tag)) 144 (cvs-status-current-tag))
145 (when (ignore-errors (mark)) 145 (when mark-active
146 ;; `mark-active' is not provided by XEmacs :-(
147 (save-excursion 146 (save-excursion
148 (goto-char (mark)) 147 (goto-char (mark))
149 (cons (cvs-status-current-file) 148 (cons (cvs-status-current-file)
@@ -506,6 +505,9 @@ Optional prefix ARG chooses between two representations."
506 505
507;;; Change Log: 506;;; Change Log:
508;; $Log: cvs-status.el,v $ 507;; $Log: cvs-status.el,v $
508;; Revision 1.3 2000/03/22 01:08:08 monnier
509;; (cvs-status-mode): Use define-derived-mode.
510;;
509;; Revision 1.2 2000/03/22 01:01:36 monnier 511;; Revision 1.2 2000/03/22 01:01:36 monnier
510;; (cvs-status-(prev|next)): Rename from 512;; (cvs-status-(prev|next)): Rename from
511;; cvs-status-(prev|next)-entry and use easy-mmode-define-navigation. 513;; cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.