1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-30 09:00:31 -08:00

(update_compositions): Fix type error.

This commit is contained in:
Dave Love 2003-01-07 17:54:11 +00:00
parent 6403daf1a3
commit a6dd56c511

View file

@ -559,7 +559,8 @@ update_compositions (from, to, check_mask)
}
if (min_pos < max_pos)
Fput_text_property (min_pos, max_pos, Qauto_composed, Qnil, Qnil);
Fput_text_property (make_number (min_pos), make_number (max_pos),
Qauto_composed, Qnil, Qnil);
}