aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorEli Zaretskii2025-01-11 07:44:23 -0500
committerEli Zaretskii2025-01-11 07:44:23 -0500
commit3d960c16c60da14a07da538cc2468f46425df634 (patch)
tree05eecbbec1a8b784e877790abe4716f0adb602ad /admin
parent5060bf6ed64a6e96b4c660e6ad5204a23133b71d (diff)
parentd66b8d4becb6804d3bd912a000dc64ccfdbe6810 (diff)
downloademacs-3d960c16c60da14a07da538cc2468f46425df634.tar.gz
emacs-3d960c16c60da14a07da538cc2468f46425df634.zip
Merge from origin/emacs-30
d66b8d4becb Fix checkbox's child creation 26c5fadf474 Document that 'package-vc' doesn't support built-in packages ee61b9a050b ; Fix documentation of completion commands ce43d13593a ; Simplify admin/run-codespell fa1470d0699 ; Remove duplicated word in files.el Commentary dabaea97465 Improve checkdoc-common-verbs-wrong-voice docstring 6de2ee5663d Document string-as-{unibyte,multibyte} as obsolete in manual 7f76f872ebf Fix go-ts-mode var spec indentation (Bug#75362) 01464fc882d Add "text" as a thing in tsx-ts-mode 59c57337923 Improve doc string of 'package-delete' 313a191d047 ; * admin/MAINTAINERS: Remove Kelvin White. 002960ceabf Clarify that 'mac' line ending convention is not used on ... 4210e065648 Add language server for Odin ee1034422b0 ; Improve documentation of function-type display 1c49edc4080 Modernize "Commentary" section of files.el 505c1123e18 * INSTALL: Add advice how to invoke 'make install'. (Bug... 82e16cae9cc Improve the documentation of 'key-valid-p' # Conflicts: # etc/NEWS # lisp/progmodes/typescript-ts-mode.el
Diffstat (limited to 'admin')
-rw-r--r--admin/MAINTAINERS5
-rwxr-xr-xadmin/run-codespell34
2 files changed, 17 insertions, 22 deletions
diff --git a/admin/MAINTAINERS b/admin/MAINTAINERS
index 413a587d398..ca20562d8a5 100644
--- a/admin/MAINTAINERS
+++ b/admin/MAINTAINERS
@@ -256,11 +256,6 @@ maintainership to someone listed above, but who want to continue to be
256CC'd as though they were still the primary maintainer, in the meantime. 256CC'd as though they were still the primary maintainer, in the meantime.
257============================================================================== 257==============================================================================
258 258
259Kelvin White
260 ERC
261 lisp/erc/*
262 doc/misc/erc.texi
263
264Eli Zaretskii 259Eli Zaretskii
265 doc/* 260 doc/*
266 261
diff --git a/admin/run-codespell b/admin/run-codespell
index be90313da1e..f5728f831f0 100755
--- a/admin/run-codespell
+++ b/admin/run-codespell
@@ -1,4 +1,4 @@
1#!/bin/bash 1#!/usr/bin/env bash
2### run-codespell - run codespell on Emacs 2### run-codespell - run codespell on Emacs
3 3
4## Copyright (C) 2023-2025 Free Software Foundation, Inc. 4## Copyright (C) 2023-2025 Free Software Foundation, Inc.
@@ -40,22 +40,22 @@ CODESPELL_DICTIONARY="${CODESPELL_DIR}/codespell.dictionary"
40emacs_run_codespell () 40emacs_run_codespell ()
41{ 41{
42 git ls-files |\ 42 git ls-files |\
43 grep -v -E -e '^(lib|m4)/.*' |\ 43 grep --line-buffered -v -E -e "^(lib|m4)/.*|\
44 grep -v -E -e '^admin/(charsets|codespell|unidata)/.*' |\ 44^admin/(charsets|codespell|unidata)/.*|\
45 grep -v -E -e '^doc/lispref/spellfile$' |\ 45^doc/lispref/spellfile$|\
46 grep -v -E -e '^doc/misc/texinfo.tex$' |\ 46^doc/misc/texinfo.tex$|\
47 grep -v -E -e '^doc/translations/.*' |\ 47^doc/translations/.*|\
48 grep -v -E -e '^etc/(AUTHORS|HELLO|publicsuffix.txt)$' |\ 48^etc/(AUTHORS|HELLO|publicsuffix.txt)$|\
49 grep -v -E -e '^etc/refcards/(cs|de|fr|pl|pt|sk)-.+.tex$' |\ 49^etc/refcards/(cs|de|fr|pl|pt|sk)-.+.tex$|\
50 grep -v -E -e '^etc/tutorials/TUTORIAL\..+' |\ 50^etc/tutorials/TUTORIAL\..+|\
51 grep -v -E -e '^leim/(MISC|SKK)-DIC/.*' |\ 51^leim/(MISC|SKK)-DIC/.*|\
52 grep -v -E -e '^lisp/language/ethio-util.el' |\ 52^lisp/language/ethio-util.el|\
53 grep -v -E -e '^lisp/ldefs-boot.el' |\ 53^lisp/ldefs-boot.el|\
54 grep -v -E -e '^lisp/leim/.*' |\ 54^lisp/leim/.*|\
55 grep -v -E -e '^test/lisp/erc/resources/.*' |\ 55^test/lisp/erc/resources/.*|\
56 grep -v -E -e '^test/lisp/net/puny-resources/IdnaTestV2.txt' |\ 56^test/lisp/net/puny-resources/IdnaTestV2.txt|\
57 grep -v -E -e '^test/manual/(etags|indent)/.*' |\ 57^test/manual/(etags|indent)/.*|\
58 grep -v -E -e '^test/src/regex-resources/.*' |\ 58^test/src/regex-resources/.*" |\
59 xargs codespell \ 59 xargs codespell \
60 --config "$CODESPELL_RC" \ 60 --config "$CODESPELL_RC" \
61 --exclude-file "$CODESPELL_EXCLUDE" \ 61 --exclude-file "$CODESPELL_EXCLUDE" \