]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-with-current-file-buffer): New macro.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 28 Mar 2007 01:19:43 +0000 (01:19 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 28 Mar 2007 01:19:43 +0000 (01:19 +0000)
(vc-arch-file-source-p): Use it to avoid infloop.

lisp/ChangeLog
lisp/vc-arch.el

index 53e7f65c968c6547576ca73240c7daa63f92ad89..979197be0c99fc3cbdcd822789fcdba43dc53d11 100644 (file)
@@ -1,3 +1,8 @@
+2007-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * vc-arch.el (vc-with-current-file-buffer): New macro.
+       (vc-arch-file-source-p): Use it to avoid infloop.
+
 2007-03-28  David Hansen  <david.hansen@gmx.net>  (tiny change)
 
        * emacs-lisp/lisp.el (lisp-complete-symbol):
index 0f02db0ba969f6fda01c3d663e8672c9cef9cf94..488f9108d367c5571d7f4a9ced3312732a70713b 100644 (file)
 
 (defconst vc-arch-tagline-re "^\\W*arch-tag:[ \t]*\\(.*[^ \t\n]\\)")
 
+(defmacro vc-with-current-file-buffer (file &rest body)
+  (declare (indent 2) (debug t))
+  `(let ((-kill-buf- nil)
+         (-file- ,file))
+     (with-current-buffer (or (find-buffer-visiting -file-)
+                              (setq -kill-buf- (generate-new-buffer " temp")))
+       ;; Avoid find-file-literally since it can do many undesirable extra
+       ;; things (among which, call us back into an infinite loop).
+       (if -kill-buf- (insert-file-contents -file-))
+       (unwind-protect
+           (progn ,@body)
+         (if (buffer-live-p -kill-buf-) (kill-buffer -kill-buf-))))))
+
 (defun vc-arch-file-source-p (file)
   "Can return nil, `maybe' or a non-nil value.
 Only the value `maybe' can be trusted :-(."
@@ -122,7 +135,7 @@ Only the value `maybe' can be trusted :-(."
          (concat ".arch-ids/" (file-name-nondirectory file) ".id")
          (file-name-directory file)))
        ;; Check the presence of a tagline.
-       (with-current-buffer (find-file-noselect file)
+       (vc-with-current-file-buffer file
          (save-excursion
            (goto-char (point-max))
            (or (re-search-backward vc-arch-tagline-re (- (point) 1000) t)