[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r108062: * lisp/ibuf-ext.el (ibuffer-
From: |
Leo Liu |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r108062: * lisp/ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer |
Date: |
Mon, 30 Apr 2012 19:57:47 +0800 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
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)))))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r108062: * lisp/ibuf-ext.el (ibuffer-diff-buffer-with-file-1): Avoid buffer,
Leo Liu <=