aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-11-20 04:04:45 +0000
committerStefan Monnier2007-11-20 04:04:45 +0000
commit77fdc5c31d75414084c7c255542bc70d6a6cb236 (patch)
tree3feae44e8e0b996d393697d72f82c68f80c45079
parent82b3ac7a99c49b585e0fde395454f895da666998 (diff)
downloademacs-77fdc5c31d75414084c7c255542bc70d6a6cb236.tar.gz
emacs-77fdc5c31d75414084c7c255542bc70d6a6cb236.zip
(cvs-revert-if-needed): Fix copy&paste typo.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/pcvs.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 300ae8b628b..1b3c8eb1c32 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12007-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * pcvs.el (cvs-revert-if-needed): Fix copy&paste typo.
4
12007-11-20 Glenn Morris <rgm@gnu.org> 52007-11-20 Glenn Morris <rgm@gnu.org>
2 6
3 * emacs-lisp/check-declare.el (check-declare-verify): Tweak regexp 7 * emacs-lisp/check-declare.el (check-declare-verify): Tweak regexp
diff --git a/lisp/pcvs.el b/lisp/pcvs.el
index fea7c80b5aa..53bed601a36 100644
--- a/lisp/pcvs.el
+++ b/lisp/pcvs.el
@@ -2293,7 +2293,7 @@ this file, or a list of arguments to send to the program."
2293 (buffer (find-buffer-visiting file))) 2293 (buffer (find-buffer-visiting file)))
2294 ;; For a revert to happen the user must be editing the file... 2294 ;; For a revert to happen the user must be editing the file...
2295 (unless (or (null buffer) 2295 (unless (or (null buffer)
2296 (eq (cvs-fileinfo->type fileinfo) '(MESSAGE UNKNOWN)) 2296 (memq (cvs-fileinfo->type fileinfo) '(MESSAGE UNKNOWN))
2297 ;; FIXME: check whether revert is really needed. 2297 ;; FIXME: check whether revert is really needed.
2298 ;; `(verify-visited-file-modtime buffer)' doesn't cut it 2298 ;; `(verify-visited-file-modtime buffer)' doesn't cut it
2299 ;; because it only looks at the time stamp (it ignores 2299 ;; because it only looks at the time stamp (it ignores