1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-23 04:53:12 -08:00

; Minor copyedits in src/editfns.c

* src/editfns.c (Fbuffer_string, Freplace_buffer_contents)
(styled_format): Avoid using non-ASCII characters in doc strings
and comments.
This commit is contained in:
Eli Zaretskii 2025-09-09 15:18:16 +03:00
parent 56cdb65e54
commit 2fafcdbf6a

View file

@ -1693,7 +1693,7 @@ If narrowing is in effect, this function returns only the visible part
of the buffer.
This function copies the text properties of that part of the buffer
into the result string; if you dont want the text properties,
into the result string; if you don't want the text properties,
use `buffer-substring-no-properties' instead. */)
(void)
{
@ -2082,7 +2082,7 @@ nil. */)
ptrdiff_t j = size_b;
/* Walk backwards through the lists of changes. This was also
cargo-culted from src/analyze.c in GNU Diffutils. Because we
walk backwards, we dont have to keep the positions in sync. */
walk backwards, we don't have to keep the positions in sync. */
while (i >= 0 || j >= 0)
{
rarely_quit (++ctx.quitcounter);
@ -3395,7 +3395,7 @@ usage: (format-message STRING &rest OBJECTS) */)
return styled_format (nargs, args, true);
}
/* Implement format-message if MESSAGE is true, format otherwise. */
/* Implement `format-message' if MESSAGE is true, `format' otherwise. */
static Lisp_Object
styled_format (ptrdiff_t nargs, Lisp_Object *args, bool message)