changeset 71791:6d32f7f6fd3a NewVC-fileset-BASE

* vc.el (vc-exec-after): Don't delete process manually. (vc-print-log): Run log-view-mode in process sentinel inside inhibit-read-only. Don't shrink window due to timing issues.
author Chong Yidong <cyd@stupidchicken.com>
date Tue, 11 Jul 2006 18:39:32 +0000
parents 8a30c071b5fb
children fccd5e915093
files lisp/ChangeLog lisp/vc.el
diffstat 2 files changed, 12 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Tue Jul 11 16:39:50 2006 +0000
+++ b/lisp/ChangeLog	Tue Jul 11 18:39:32 2006 +0000
@@ -1,5 +1,9 @@
 2006-07-11  Chong Yidong  <cyd@stupidchicken.com>
 
+	* vc.el (vc-exec-after): Don't delete process manually.
+	(vc-print-log): Run log-view-mode in process sentinel inside
+	inhibit-read-only.  Don't shrink window due to timing issues.
+
 	* progmodes/ebrowse.el (ebrowse-display-member-buffer): Avoid
 	using with-output-to-temp-buffer, which clobbers local vars.
 
--- a/lisp/vc.el	Tue Jul 11 16:39:50 2006 +0000
+++ b/lisp/vc.el	Tue Jul 11 18:39:32 2006 +0000
@@ -934,11 +934,12 @@
   (let ((proc (get-buffer-process (current-buffer))))
     (cond
      ;; If there's no background process, just execute the code.
-     ((null proc) (eval code))
-     ;; If the background process has exited, reap it and try again
-     ((eq (process-status proc) 'exit)
-      (delete-process proc)
-      (vc-exec-after code))
+     ;; We used to explicitly call delete-process on exited processes,
+     ;; but this led to timing problems causing process output to be
+     ;; lost.  Terminated processes get deleted automatically
+     ;; anyway. -- cyd
+     ((or (null proc) (eq (process-status proc) 'exit))
+      (eval code))
      ;; If a process is running, add CODE to the sentinel
      ((eq (process-status proc) 'run)
       (let ((sentinel (process-sentinel proc)))
@@ -2446,9 +2447,9 @@
          (vc-call print-log file)
          (set-buffer "*vc*"))))
     (pop-to-buffer (current-buffer))
-    (log-view-mode)
     (vc-exec-after
      `(let ((inhibit-read-only t))
+    	(log-view-mode)
 	(goto-char (point-max)) (forward-line -1)
 	(while (looking-at "=*\n")
 	  (delete-char (- (match-end 0) (match-beginning 0)))
@@ -2456,7 +2457,7 @@
 	(goto-char (point-min))
 	(if (looking-at "[\b\t\n\v\f\r ]+")
 	    (delete-char (- (match-end 0) (match-beginning 0))))
-	(shrink-window-if-larger-than-buffer)
+	;; (shrink-window-if-larger-than-buffer)
 	;; move point to the log entry for the current version
 	(vc-call-backend ',(vc-backend file)
 			 'show-log-entry