]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fprimitive_undo): In a writable buffer, enable undoing
authorGerd Moellmann <gerd@gnu.org>
Mon, 30 Apr 2001 14:57:35 +0000 (14:57 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 30 Apr 2001 14:57:35 +0000 (14:57 +0000)
read-only text that is so because of text properties.

src/undo.c

index d2a5590a1934ddf4990cab868c36faa2d1560284..83c2327a8db56b84242a8a8645f615dae3f8142b 100644 (file)
@@ -412,8 +412,9 @@ Return what remains of the list.")
   next = Qnil;
   GCPRO2 (next, list);
 
-  /* Don't let read-only properties interfere with undo.  */
-  if (!NILP (current_buffer->read_only))
+  /* In a writable buffer, enable undoing read-only text that is so
+     because of text properties.  */
+  if (NILP (current_buffer->read_only))
     specbind (Qinhibit_read_only, Qt);
 
   /* Don't let `intangible' properties interfere with undo.  */