From 4c587cd3af12aa1502fcd63662838e0b63449257 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Mon, 4 Dec 2000 13:30:53 +0000 Subject: [PATCH] (Fprimitive_undo): Bind inhibit-read-only to t if current buffer is read-only, not if it isn't. --- src/undo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/undo.c b/src/undo.c index 2eedfe31ab3..df1b82ff759 100644 --- a/src/undo.c +++ b/src/undo.c @@ -412,7 +412,7 @@ Return what remains of the list.") GCPRO2 (next, list); /* Don't let read-only properties interfere with undo. */ - if (NILP (current_buffer->read_only)) + if (!NILP (current_buffer->read_only)) specbind (Qinhibit_read_only, Qt); while (arg > 0) -- 2.39.5