From 2fafcdbf6ac686e723292f2c9c581de7e81bef7b Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Tue, 9 Sep 2025 15:18:16 +0300 Subject: [PATCH] ; 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. --- src/editfns.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/editfns.c b/src/editfns.c index a3f220671a8..ea71c3cda37 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -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 don’t 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 don’t 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)