1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-09 13:10:57 -08:00

(read_minibuf): Put all three properties on the same range--the whole prompt.

This commit is contained in:
Richard M. Stallman 1999-09-08 21:14:25 +00:00
parent 63f4d57914
commit fbd1209a4a

View file

@ -241,6 +241,7 @@ read_minibuf (map, initial, prompt, backup_n, expflag,
struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
Lisp_Object enable_multibyte;
extern Lisp_Object Qinvisible, Qintangible, Qread_only, Qfront_sticky;
extern Lisp_Object Qrear_nonsticky;
specbind (Qminibuffer_default, defalt);
@ -396,12 +397,12 @@ read_minibuf (map, initial, prompt, backup_n, expflag,
XSETFASTINT (current_buffer->minibuffer_prompt_length, PT);
if (PT > BEG)
{
Fput_text_property (make_number (BEG), make_number (PT - 1),
Fput_text_property (make_number (BEG), make_number (PT),
Qfront_sticky, Qt, Qnil);
Fput_text_property (make_number (BEG), make_number (PT - 1),
Qread_only, Qt, Qnil);
Fput_text_property (make_number (PT - 1), make_number (Z),
Fput_text_property (make_number (BEG), make_number (PT),
Qrear_nonsticky, Qt, Qnil);
Fput_text_property (make_number (BEG), make_number (PT),
Qread_only, Qt, Qnil);
}
/* If appropriate, copy enable-multibyte-characters into the minibuffer. */