]> git.eshelyaron.com Git - emacs.git/commitdiff
(cvs-parse-table): Ignore errors when looking up files
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 16 Nov 2007 03:16:32 +0000 (03:16 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 16 Nov 2007 03:16:32 +0000 (03:16 +0000)
in order to determine if there's a conflict.

lisp/ChangeLog
lisp/pcvs-parse.el

index 7ca055fb9cfb9e3b3de9b358ba7a82b384782981..86f0e839801f3fc46f24cc2d335cd056ba65e5f6 100644 (file)
@@ -1,3 +1,8 @@
+2007-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * pcvs-parse.el (cvs-parse-table): Ignore errors when looking up files
+       in order to determine if there's a conflict.
+
 2007-11-16  Juri Linkov  <juri@jurta.org>
 
        * man.el (Man-heading-regexp): Add 0-9.
@@ -30,8 +35,8 @@
 
 2007-11-14  Jason Rumney  <jasonr@gnu.org>
 
-       * international/mule-cmds.el (set-locale-environment): Set
-       default-file-name-coding-system from system defaults on Windows.
+       * international/mule-cmds.el (set-locale-environment):
+       Set default-file-name-coding-system from system defaults on Windows.
 
 2007-11-14  Nick Roberts  <nickrob@snap.net.nz>
 
index 3ca1829030f390f0a0cdd22a1dd9c39dd89b8a53..7eb5c0b488ffcd48ffc0a4f85d504835665a9b14 100644 (file)
@@ -235,7 +235,7 @@ The remaining KEYS are passed directly to `cvs-create-fileinfo'."
              ;; servers, this should not be necessary, because they return
              ;; a complete merge output.
              (with-temp-buffer
-               (insert-file-contents path)
+               (ignore-errors (insert-file-contents path))
                (goto-char (point-min))
                (if (re-search-forward "^<<<<<<< " nil t)
                    'CONFLICT 'NEED-MERGE))))
@@ -272,8 +272,9 @@ The remaining KEYS are passed directly to `cvs-create-fileinfo'."
        ;; branches, or because it's been removed).
        (if (ignore-errors
              (with-temp-buffer
-               (insert-file-contents (expand-file-name
-                                      ".cvsignore" (file-name-directory dir)))
+                (ignore-errors
+                  (insert-file-contents
+                   (expand-file-name ".cvsignore" (file-name-directory dir))))
                (goto-char (point-min))
                (re-search-forward
                 (concat "^" (regexp-quote (file-name-nondirectory dir)) "/$")