From 2fafcdbf6ac686e723292f2c9c581de7e81bef7b Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Tue, 9 Sep 2025 15:18:16 +0300 Subject: [PATCH 1/3] ; 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) From 0832e5fec569d3247f83a2dbbeae2057a826db71 Mon Sep 17 00:00:00 2001 From: James Thomas Date: Sat, 13 Sep 2025 03:41:54 +0530 Subject: [PATCH 2/3] ; * lisp/vc/vc.el (vc-print-root-log): Improve docstring (bug#79439). --- lisp/vc/vc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index cb6197c62b7..1ca895cbecc 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -2967,7 +2967,7 @@ number of revisions to show; the default is `vc-log-show-limit'. When called interactively with a prefix argument, prompt for LIMIT, but if the prefix argument is a number, use it as LIMIT. A special case is when the prefix argument is 1: in this case -the command prompts for the ID of a revision, and shows that revision +the command prompts for the id of a REVISION, and shows that revision with its diffs (if the underlying VCS backend supports that)." (interactive (cond From 47454566772479c706ea53b4ee9ad5caaafd9130 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 13 Sep 2025 13:47:04 +0300 Subject: [PATCH 3/3] ; * lisp/dired-x.el (dired-find-subdir): Doc fix (bug#79440). --- lisp/dired-x.el | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/lisp/dired-x.el b/lisp/dired-x.el index 364e8af5299..fc65a25e897 100644 --- a/lisp/dired-x.el +++ b/lisp/dired-x.el @@ -188,16 +188,14 @@ When nil, don't show messages." :group 'dired-x) (defcustom dired-find-subdir nil ; t is pretty near to DWIM... - "If non-nil, Dired always finds a directory in a buffer of its own. -If nil, Dired finds the directory as a subdirectory in some other buffer -if it is present as one. + "If nil, Dired always finds a directory in a buffer of its own. +If non-nil, Dired finds the directory as a subdirectory in some +other buffer if it is present as one. -If there are several Dired buffers for a directory, the most recently -used is chosen. - -Dired avoids switching to the current buffer, so that if you have -a normal and a wildcard buffer for the same directory, \\[dired] will -toggle between those two." +If the value is non-nil, and there are several Dired buffers for a +directory, the most recently used is chosen. Dired avoids switching +to the current buffer, so that if you have a normal and a wildcard +buffer for the same directory, \\[dired] will toggle between those two." :type 'boolean :group 'dired-x)