diff options
| author | Stefan Monnier | 2007-11-15 15:37:55 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2007-11-15 15:37:55 +0000 |
| commit | e75e6cc8f7b830964e323b6b109985565532046f (patch) | |
| tree | 5c710fead07f0e2fe6db60062407adfbd7d3c5db | |
| parent | a1bf7841cf6b499027004efdd45aef68822a2d65 (diff) | |
| download | emacs-e75e6cc8f7b830964e323b6b109985565532046f.tar.gz emacs-e75e6cc8f7b830964e323b6b109985565532046f.zip | |
(cvs-revert-if-needed): Ignore `unknown' files, since cvs
did not touch them.
| -rw-r--r-- | lisp/ChangeLog | 15 | ||||
| -rw-r--r-- | lisp/pcvs.el | 2 |
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 @@ | |||
| 1 | 2007-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 | |||
| 1 | 2007-11-15 Jay Belanger <jay.p.belanger@gmail.com> | 6 | 2007-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 | ||
| 36 | 2007-11-13 Dan Nicolaescu <dann@ics.uci.edu> | 40 | 2007-11-13 Dan Nicolaescu <dann@ics.uci.edu> |
| 37 | 41 | ||
| @@ -40,8 +44,8 @@ | |||
| 40 | 44 | ||
| 41 | 2007-11-12 Michael Albinus <michael.albinus@gmx.de> | 45 | 2007-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 | ||
| 46 | 2007-11-12 Vinicius Jose Latorre <viniciusjl@ig.com.br> | 50 | 2007-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 | ||
| 61 | 2007-11-12 Kevin Ryde <user42@zip.com.au> | 64 | 2007-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 |