Fix format typos in never-executed textconv.c

* src/textconv.c (really_commit_text, really_replace_text):
Use %td not %zd.
This commit is contained in:
Paul Eggert 2026-05-23 09:38:36 -07:00
parent fbd2f781b2
commit 82ad01b631

View file

@ -633,7 +633,7 @@ really_commit_text (struct frame *f, EMACS_INT position,
otherwise. */
mark = get_mark ();
TEXTCONV_DEBUG ("the mark is: %zd", mark);
TEXTCONV_DEBUG ("the mark is: %td", mark);
if (MARKERP (f->conversion.compose_region_start) || mark != -1)
{
/* Replace its contents. Set START and END to the start and end
@ -651,7 +651,7 @@ really_commit_text (struct frame *f, EMACS_INT position,
end = max (mark, PT);
}
TEXTCONV_DEBUG ("replacing text in composing region: %zd, %zd",
TEXTCONV_DEBUG ("replacing text in composing region: %td, %td",
start, end);
/* If it transpires that the start of the compose region is not
@ -774,7 +774,7 @@ really_commit_text (struct frame *f, EMACS_INT position,
call0 (Qdeactivate_mark);
/* Print some debugging information. */
TEXTCONV_DEBUG ("text inserted: %s, point now: %zd",
TEXTCONV_DEBUG ("text inserted: %s, point now: %td",
SSDATA (text), PT);
/* Update the ephemeral last point. */
@ -1438,7 +1438,7 @@ really_replace_text (struct frame *f, ptrdiff_t start, ptrdiff_t end,
}
/* Print some debugging information. */
TEXTCONV_DEBUG ("text inserted: %s, point now: %zd",
TEXTCONV_DEBUG ("text inserted: %s, point now: %td",
SSDATA (text), PT);
/* Update the ephemeral last point. */