comparison lisp/pcvs-info.el @ 56955:53103758d397

(cvs-states): Allow `ignore' on NEED-UPDATE. It's not crucial but can make sense at times.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Tue, 07 Sep 2004 04:51:47 +0000
parents 22cdf6999b11
children 31aa9a390538 cce1c0ee76ee
comparison
equal deleted inserted replaced
56954:242cddb00aef 56955:53103758d397
1 ;;; pcvs-info.el --- internal representation of a fileinfo entry 1 ;;; pcvs-info.el --- internal representation of a fileinfo entry
2 2
3 ;; Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2004 3 ;; Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 ;; Free Software Foundation, Inc. 4 ;; 2000, 2004 Free Software Foundation, Inc.
5 5
6 ;; Author: Stefan Monnier <monnier@cs.yale.edu> 6 ;; Author: Stefan Monnier <monnier@cs.yale.edu>
7 ;; Keywords: pcl-cvs 7 ;; Keywords: pcl-cvs
8 8
9 ;; This file is part of GNU Emacs. 9 ;; This file is part of GNU Emacs.
272 ;;;; 272 ;;;;
273 ;;;; State table to indicate what you can do when. 273 ;;;; State table to indicate what you can do when.
274 ;;;; 274 ;;;;
275 275
276 (defconst cvs-states 276 (defconst cvs-states
277 `((NEED-UPDATE update diff) 277 `((NEED-UPDATE update diff ignore)
278 (UP-TO-DATE update nil remove diff safe-rm revert) 278 (UP-TO-DATE update nil remove diff safe-rm revert)
279 (MODIFIED update commit undo remove diff merge diff-base) 279 (MODIFIED update commit undo remove diff merge diff-base)
280 (ADDED update commit remove) 280 (ADDED update commit remove)
281 (MISSING remove undo update safe-rm revert) 281 (MISSING remove undo update safe-rm revert)
282 (REMOVED commit add undo safe-rm) 282 (REMOVED commit add undo safe-rm)
469 (forward-line 1)))) 469 (forward-line 1))))
470 fis)) 470 fis))
471 471
472 (provide 'pcvs-info) 472 (provide 'pcvs-info)
473 473
474 ;;; arch-tag: d85dde07-bdc2-400a-882f-92f398c7b0ba 474 ;; arch-tag: d85dde07-bdc2-400a-882f-92f398c7b0ba
475 ;;; pcvs-info.el ends here 475 ;;; pcvs-info.el ends here