emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r108062: * lisp/ibuf-ext.el (ibuff


From: Leo Liu
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r108062: * lisp/ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
Date: Fri, 02 Nov 2012 01:45:58 -0000
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108062
committer: Leo Liu <address@hidden>
branch nick: trunk
timestamp: Mon 2012-04-30 19:57:47 +0800
message:
  * lisp/ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
  read-only error.
modified:
  lisp/ChangeLog
  lisp/ibuf-ext.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-04-29 01:48:23 +0000
+++ b/lisp/ChangeLog    2012-04-30 11:57:47 +0000
@@ -1,3 +1,8 @@
+2012-04-30  Leo Liu  <address@hidden>
+
+       * ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer
+       read-only error.
+
 2012-04-29  Chong Yidong  <address@hidden>
 
        * follow.el (follow-calc-win-end): Rewrite to handle partial

=== modified file 'lisp/ibuf-ext.el'
--- a/lisp/ibuf-ext.el  2012-04-24 03:40:57 +0000
+++ b/lisp/ibuf-ext.el  2012-04-30 11:57:47 +0000
@@ -1356,8 +1356,8 @@
                (diff-sentinel
                 (call-process shell-file-name nil
                               (current-buffer) nil
-                              shell-command-switch command)))
-             (insert "\n"))))
+                              shell-command-switch command))
+               (insert "\n")))))
       (sit-for 0)
       (when (file-exists-p tempfile)
        (delete-file tempfile)))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]