comparison lisp/vc.el @ 46541:021204d82a30

Improve comment of vc-BACKEND-workfile-unchanged-p.
author André Spiegel <spiegel@gnu.org>
date Fri, 19 Jul 2002 13:20:02 +0000
parents ddfd07bf63ec
children 9ed0e3821f7a
comparison
equal deleted inserted replaced
46540:018d4ae67d41 46541:021204d82a30
4 4
5 ;; Author: FSF (see below for full credits) 5 ;; Author: FSF (see below for full credits)
6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org> 6 ;; Maintainer: Andre Spiegel <spiegel@gnu.org>
7 ;; Keywords: tools 7 ;; Keywords: tools
8 8
9 ;; $Id: vc.el,v 1.332 2002/07/16 17:47:33 spiegel Exp $ 9 ;; $Id: vc.el,v 1.333 2002/07/16 20:44:23 monnier Exp $
10 10
11 ;; This file is part of GNU Emacs. 11 ;; This file is part of GNU Emacs.
12 12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify 13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by 14 ;; it under the terms of the GNU General Public License as published by
146 ;; Return non-nil if FILE is unchanged from its current workfile 146 ;; Return non-nil if FILE is unchanged from its current workfile
147 ;; version. This function should do a brief comparison of FILE's 147 ;; version. This function should do a brief comparison of FILE's
148 ;; contents with those of the master version. If the backend does not 148 ;; contents with those of the master version. If the backend does not
149 ;; have such a brief-comparison feature, the default implementation of 149 ;; have such a brief-comparison feature, the default implementation of
150 ;; this function can be used, which delegates to a full 150 ;; this function can be used, which delegates to a full
151 ;; vc-BACKEND-diff. 151 ;; vc-BACKEND-diff. (Note that vc-BACKEND-diff must not run
152 ;; asynchronously in this case.)
152 ;; 153 ;;
153 ;; - mode-line-string (file) 154 ;; - mode-line-string (file)
154 ;; 155 ;;
155 ;; If provided, this function should return the VC-specific mode line 156 ;; If provided, this function should return the VC-specific mode line
156 ;; string for FILE. The default implementation deals well with all 157 ;; string for FILE. The default implementation deals well with all