aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2025-09-06 05:53:08 -0400
committerEli Zaretskii2025-09-06 05:53:08 -0400
commit4ac9e93e5ec3c1b28f3f6721312e2429fb42bb3d (patch)
treecc8c555d9544ed1e4d2f4dba89e11775435cf684
parent29d18f4ffe9c9152bdfe2d4dec9f8a74609cf4c5 (diff)
parentaad5b676d1c1a007762efe97f4aae34f69f0e79a (diff)
downloademacs-4ac9e93e5ec3c1b28f3f6721312e2429fb42bb3d.tar.gz
emacs-4ac9e93e5ec3c1b28f3f6721312e2429fb42bb3d.zip
Merge from origin/emacs-30
aad5b676d1c ; * lisp/emacs-lisp/ring.el (ring-convert-sequence-to-rin... ddd63891a48 ; * doc/misc/flymake.texi (Troubleshooting): Fix typo (bu... 8dcb8020466 ; vc-hooks.el: Standardize terminology in header.
-rw-r--r--doc/misc/flymake.texi2
-rw-r--r--lisp/emacs-lisp/ring.el2
-rw-r--r--lisp/vc/vc-hooks.el9
3 files changed, 6 insertions, 7 deletions
diff --git a/doc/misc/flymake.texi b/doc/misc/flymake.texi
index 42935703c11..2cdeac98d76 100644
--- a/doc/misc/flymake.texi
+++ b/doc/misc/flymake.texi
@@ -231,7 +231,7 @@ can use the variables @code{flymake-mode-line-format} and
231@cindex disabled backends 231@cindex disabled backends
232@cindex backends, disabled 232@cindex backends, disabled
233As Flymake supports multiple simultaneously active external backends, 233As Flymake supports multiple simultaneously active external backends,
234is becomes useful to monitor their status. For example, some backends 234it becomes useful to monitor their status. For example, some backends
235may take longer than others to respond or complete, and some may 235may take longer than others to respond or complete, and some may
236decide to @emph{disable} themselves if they are not suitable for the 236decide to @emph{disable} themselves if they are not suitable for the
237current buffer or encounter some unavoidable problem. A disabled 237current buffer or encounter some unavoidable problem. A disabled
diff --git a/lisp/emacs-lisp/ring.el b/lisp/emacs-lisp/ring.el
index 293f0f93a0c..8518753ab20 100644
--- a/lisp/emacs-lisp/ring.el
+++ b/lisp/emacs-lisp/ring.el
@@ -240,7 +240,7 @@ If the RING is full, behavior depends on GROW-P:
240 (ring-insert+extend ring item grow-p)) 240 (ring-insert+extend ring item grow-p))
241 241
242(defun ring-convert-sequence-to-ring (seq) 242(defun ring-convert-sequence-to-ring (seq)
243 "Convert sequence SEQ to a ring. Return the ring. 243 "Convert sequence SEQ to a ring, and return the ring.
244If SEQ is already a ring, return it." 244If SEQ is already a ring, return it."
245 (if (ring-p seq) 245 (if (ring-p seq)
246 seq 246 seq
diff --git a/lisp/vc/vc-hooks.el b/lisp/vc/vc-hooks.el
index c71b2b014c5..ded24ada8a0 100644
--- a/lisp/vc/vc-hooks.el
+++ b/lisp/vc/vc-hooks.el
@@ -1,4 +1,4 @@
1;;; vc-hooks.el --- resident support for version-control -*- lexical-binding:t -*- 1;;; vc-hooks.el --- Preloaded support for version control -*- lexical-binding:t -*-
2 2
3;; Copyright (C) 1992-1996, 1998-2025 Free Software Foundation, Inc. 3;; Copyright (C) 1992-1996, 1998-2025 Free Software Foundation, Inc.
4 4
@@ -23,10 +23,9 @@
23 23
24;;; Commentary: 24;;; Commentary:
25 25
26;; This is the always-loaded portion of VC. It takes care of 26;; This is the preloaded portion of VC. It takes care of VC-related
27;; VC-related activities that are done when you visit a file, so that 27;; activities that are done when you visit a file, so that vc.el itself
28;; vc.el itself is loaded only when you use a VC command. See the 28;; is loaded only when you use a VC command. See commentary of vc.el.
29;; commentary of vc.el.
30 29
31;;; Code: 30;;; Code:
32 31