aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-11-15 15:37:55 +0000
committerStefan Monnier2007-11-15 15:37:55 +0000
commite75e6cc8f7b830964e323b6b109985565532046f (patch)
tree5c710fead07f0e2fe6db60062407adfbd7d3c5db
parenta1bf7841cf6b499027004efdd45aef68822a2d65 (diff)
downloademacs-e75e6cc8f7b830964e323b6b109985565532046f.tar.gz
emacs-e75e6cc8f7b830964e323b6b109985565532046f.zip
(cvs-revert-if-needed): Ignore `unknown' files, since cvs
did not touch them.
-rw-r--r--lisp/ChangeLog15
-rw-r--r--lisp/pcvs.el2
2 files changed, 10 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index edc8ae70dd2..f39752b4e18 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * pcvs.el (cvs-revert-if-needed): Ignore `unknown' files, since cvs
4 did not touch them.
5
12007-11-15 Jay Belanger <jay.p.belanger@gmail.com> 62007-11-15 Jay Belanger <jay.p.belanger@gmail.com>
2 7
3 * calc/calc-menu.el: New file. 8 * calc/calc-menu.el: New file.
@@ -30,8 +35,7 @@
30 (byte-compile-nilconstp): New function. 35 (byte-compile-nilconstp): New function.
31 (byte-optimize-cond): Kill subsequent branches when a branch is 36 (byte-optimize-cond): Kill subsequent branches when a branch is
32 know to be taken or not taken. 37 know to be taken or not taken.
33 (byte-optimize-if): Use byte-compile-nilconstp instead of hand 38 (byte-optimize-if): Use byte-compile-nilconstp instead of hand coding.
34 coding.
35 39
362007-11-13 Dan Nicolaescu <dann@ics.uci.edu> 402007-11-13 Dan Nicolaescu <dann@ics.uci.edu>
37 41
@@ -40,8 +44,8 @@
40 44
412007-11-12 Michael Albinus <michael.albinus@gmx.de> 452007-11-12 Michael Albinus <michael.albinus@gmx.de>
42 46
43 * net/tramp.el (tramp-open-connection-setup-interactive-shell): Check 47 * net/tramp.el (tramp-open-connection-setup-interactive-shell):
44 whether the output of "uname -sr" has been changed. 48 Check whether the output of "uname -sr" has been changed.
45 49
462007-11-12 Vinicius Jose Latorre <viniciusjl@ig.com.br> 502007-11-12 Vinicius Jose Latorre <viniciusjl@ig.com.br>
47 51
@@ -55,8 +59,7 @@
55 a bootstrap failure. 59 a bootstrap failure.
56 60
57 * vc-cvs.el (vc-cvs-diff): If backup files exist, diff them 61 * vc-cvs.el (vc-cvs-diff): If backup files exist, diff them
58 instead of doing "cvs diff" in order to avoid accessing the 62 instead of doing "cvs diff" in order to avoid accessing the repository.
59 repository.
60 63
612007-11-12 Kevin Ryde <user42@zip.com.au> 642007-11-12 Kevin Ryde <user42@zip.com.au>
62 65
diff --git a/lisp/pcvs.el b/lisp/pcvs.el
index a0bac0b2871..b0b5d919cb0 100644
--- a/lisp/pcvs.el
+++ b/lisp/pcvs.el
@@ -2291,7 +2291,7 @@ this file, or a list of arguments to send to the program."
2291 (buffer (find-buffer-visiting file))) 2291 (buffer (find-buffer-visiting file)))
2292 ;; For a revert to happen the user must be editing the file... 2292 ;; For a revert to happen the user must be editing the file...
2293 (unless (or (null buffer) 2293 (unless (or (null buffer)
2294 (eq (cvs-fileinfo->type fileinfo) 'MESSAGE) 2294 (eq (cvs-fileinfo->type fileinfo) '(MESSAGE UNKNOWN))
2295 ;; FIXME: check whether revert is really needed. 2295 ;; FIXME: check whether revert is really needed.
2296 ;; `(verify-visited-file-modtime buffer)' doesn't cut it 2296 ;; `(verify-visited-file-modtime buffer)' doesn't cut it
2297 ;; because it only looks at the time stamp (it ignores 2297 ;; because it only looks at the time stamp (it ignores