diff lisp/diff-mode.el @ 92618:42c38aef74a3

(diff-ignore-whitespace-hunk): Bind inhibit-read-only before trying to change the buffer.
author Dan Nicolaescu <dann@ics.uci.edu>
date Sat, 08 Mar 2008 07:56:13 +0000
parents 4054054dd212
children a7290e24873c
line wrap: on
line diff
--- a/lisp/diff-mode.el	Sat Mar 08 04:33:27 2008 +0000
+++ b/lisp/diff-mode.el	Sat Mar 08 07:56:13 2008 +0000
@@ -1695,13 +1695,13 @@
 	 (line-nb (and (or (looking-at "[^0-9]+\\([0-9]+\\)")
 			   (error "Can't find line number"))
 		       (string-to-number (match-string 1))))
+	 (inhibit-read-only t)
 	 (hunk (delete-and-extract-region
 		(point) (save-excursion (diff-end-of-hunk) (point))))
 	 (lead (make-string (1- line-nb) ?\n)) ;Line nums start at 1.
 	 (file1 (make-temp-file "diff1"))
 	 (file2 (make-temp-file "diff2"))
 	 (coding-system-for-read buffer-file-coding-system)
-	 (inhibit-read-only t)
 	 old new)
     (unwind-protect
 	(save-excursion