Author: Daniel PittmanDaniel Pittman Date: Sep 16, 2008 06:11
Davin Pearson gmail.com> writes:
> On Sep 16, 7:29 pm, Daniel Pittman rimspace.net> wrote:
>> This is a traditional default; try:
>>
>> M-x customize-variable minibuffer-prompt-properties
>>
>> Enable the "Don't Enter" option and save your changes, which will
>> implement what you expect. (Well, no beep, but you can't move over the
>> text any longer.)
>
> The following code appears to work:
>
> (setq minibuffer-prompt-properties (remove 'read-only minibuffer-
> prompt-properties))
Ouch. That risks causing *serious* breakage:
`minibuffer-prompt-properties' is a plist, which means that it needs to
have an even number of elements.
|