diff options
| author | Paul Eggert | 2025-12-26 10:20:45 -0800 |
|---|---|---|
| committer | Paul Eggert | 2025-12-26 10:22:12 -0800 |
| commit | 481ad70d5cb5ef68a456152a6bab88e27f9bd319 (patch) | |
| tree | 0759d09b23efb6b0b7bdf2be23412a58de8ecd68 /admin | |
| parent | 5b461a49305ac5db329f28f719c6f9aa0aafd2cc (diff) | |
| download | emacs-481ad70d5cb5ef68a456152a6bab88e27f9bd319.tar.gz emacs-481ad70d5cb5ef68a456152a6bab88e27f9bd319.zip | |
December 2025 spelling fixes
Some of the fixes are to continue to use American
rather than British spelling.
* doc/misc/modus-themes.org (my-modus-themes-engraved-faces):
Fix misspelled ‘:foreground’s.
* etc/themes/modus-themes.el (modus-themes-faces):
Fix misspelled ‘modus-themes-bold’.
* lisp/emacs-lisp/rx.el (rx--normalize-char-pattern):
Rename from rx--normalise-char-pattern.
(rx--optimize-or-args): Rename from rx--optimise-or-args.
* lisp/frame.el (frame--special-parameters):
Fix misspelled "right-divider-width".
* lisp/net/tramp.el (tramp-fingerprint-prompt-regexp):
Use American spelling “centered”, to match current libfprintf.
* lisp/org/org-fold-core.el (org-fold-core--optimize-for-huge-buffers):
Rename from org-fold-core--optimise-for-huge-buffers.
(org-fold-core-update-optimization):
Rename from org-fold-core-update-optimisation,
leaving an alias behind.
(org-fold-core-remove-optimization):
Rename from org-fold-core-remove-optimisation,
leaving an alias behind.
* lisp/org/org.el (org-advertized-archive-subtree):
This alias is now obsolete.
* lisp/play/zone.el (zone-ignored-buffers):
Fix misspelling of ‘zone--buffer-encrypted-p’.
* lisp/progmodes/csharp-mode.el (csharp-ts-mode-faces):
Fix misspelling of ‘csharp’ group.
* lisp/vc/vc.el (vc-clonable-backends-custom-type):
Rename from vc-cloneable-backends-custom-type,
leaving an alias behind.
* test/lisp/emacs-lisp/bytecomp-tests.el:
(bytecomp-tests--warn-arity-non-compiled-callee):
Rename from bytecomp-tests--warn-arity-noncompiled-callee.
(bytecomp-test-defface-spec): Reword a deliberate misspelling
of “default” that is so common I don’t want it to pollute the
spelling dictionary.
* test/lisp/emacs-lisp/package-vc-tests.el:
(package-vc-tests-preserve-artifacts):
Rename from package-vc-tests-preserve-artifacts.
* test/lisp/eshell/em-prompt-tests.el:
(em-prompt-test/forward-backward-paragraph-1):
Reword a deliberate misspelling of “goodbye” that is so common I
don’t want it to pollute the spelling dictionary.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/notes/java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/notes/java b/admin/notes/java index 9a7c925e123..6895632be32 100644 --- a/admin/notes/java +++ b/admin/notes/java | |||
| @@ -453,7 +453,7 @@ See http://docs.oracle.com/en/java/javase/19/docs/specs/jni/intro.html | |||
| 453 | for more details. | 453 | for more details. |
| 454 | 454 | ||
| 455 | Java does not support `goto' statements, which it defines as reserved | 455 | Java does not support `goto' statements, which it defines as reserved |
| 456 | identifiers but does not assign any syntatic role. If you are in a | 456 | identifiers but does not assign any syntactic role. If you are in a |
| 457 | position where you must exercise `goto' to exit a block prematurely, you | 457 | position where you must exercise `goto' to exit a block prematurely, you |
| 458 | may define the block and exit it with a named `break' statement, thus: | 458 | may define the block and exit it with a named `break' statement, thus: |
| 459 | 459 | ||