diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/minibuf.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 26e1ac3d9c2..adf719d7efd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only | ||
| 4 | (bug#12117). | ||
| 5 | |||
| 1 | 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * alloc.c (Fgarbage_collect): Use plural form consistently. | 8 | * alloc.c (Fgarbage_collect): Use plural form consistently. |
diff --git a/src/minibuf.c b/src/minibuf.c index 59da974df00..06ea415db62 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -408,6 +408,7 @@ read_minibuf (Lisp_Object map, Lisp_Object initial, Lisp_Object prompt, | |||
| 408 | Lisp_Object dummy, frame; | 408 | Lisp_Object dummy, frame; |
| 409 | 409 | ||
| 410 | specbind (Qminibuffer_default, defalt); | 410 | specbind (Qminibuffer_default, defalt); |
| 411 | specbind (intern ("inhibit-read-only"), Qnil); | ||
| 411 | 412 | ||
| 412 | /* If Vminibuffer_completing_file_name is `lambda' on entry, it was t | 413 | /* If Vminibuffer_completing_file_name is `lambda' on entry, it was t |
| 413 | in previous recursive minibuffer, but was not set explicitly | 414 | in previous recursive minibuffer, but was not set explicitly |