Fix set-fontset-font with ADD arg non-nil
* src/fontset.c (fontset_add): Fix off-by-one error at TO. (Bug#39482)
This commit is contained in:
parent
530067463b
commit
06c302d425
1 changed files with 1 additions and 1 deletions
|
@ -353,7 +353,7 @@ fontset_add (Lisp_Object fontset, Lisp_Object range, Lisp_Object elt, Lisp_Objec
|
||||||
(NILP (args[idx]) ? args[1 - idx]
|
(NILP (args[idx]) ? args[1 - idx]
|
||||||
: CALLMANY (Fvconcat, args)));
|
: CALLMANY (Fvconcat, args)));
|
||||||
from = to1 + 1;
|
from = to1 + 1;
|
||||||
} while (from < to);
|
} while (from <= to);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue