]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typos
authorStefan Kangas <stefankangas@gmail.com>
Sun, 23 Jun 2024 14:28:31 +0000 (16:28 +0200)
committerEshel Yaron <me@eshelyaron.com>
Mon, 24 Jun 2024 07:14:56 +0000 (09:14 +0200)
(cherry picked from commit fb11294d4156a4be45080ff286a8ee0d5a3ede9b)

26 files changed:
ChangeLog.3
ChangeLog.4
ChangeLog.android
admin/codespell/codespell.exclude
admin/codespell/codespell.ignore
doc/lispref/ChangeLog.1
doc/lispref/peg.texi
doc/misc/cc-mode.texi
doc/misc/gnus.texi
etc/ORG-NEWS
etc/themes/leuven-theme.el
lisp/ChangeLog.1
lisp/eshell/esh-util.el
lisp/gnus/ChangeLog.3
lisp/org/ob-core.el
lisp/org/org-indent.el
lisp/org/org.el
lisp/progmodes/cc-langs.el
lisp/progmodes/inf-lisp.el
lisp/progmodes/php-ts-mode.el
lisp/textmodes/sgml-mode.el
lisp/which-key.el
src/ChangeLog.12
src/w32image.c
test/lisp/progmodes/cperl-mode-resources/extra-delimiters.pl
test/lisp/ses-tests.el

index 1398b9bcf539ecb147648190fa74210e0254659e..8d227d8a47ddc86f5db45e4fdf3b905d8666adbf 100644 (file)
            (setq message-send-mail-function 'message-send-mail-with-sendmail)
            (setq sendmail-program "msmtp")
 
-       the message seding is handled by an external program, so no Unicode
+       the message sending is handled by an external program, so no Unicode
        encoding is performed in Emacs. Thus Emacs must not assert that the
        Unicode encoding was performed.
 
 
 2019-05-27  Glenn Morris  <rgm@gnu.org>
 
-       * test/lisp/autorevert-tests.el: Give on on remote hydra.nixos tests.
+       * test/lisp/autorevert-tests.el: Give up on remote hydra.nixos tests.
 
        (auto-revert--test-enabled-remote): Disable on hydra.nixos.
 
        92ce2dd Improve documentation of window parameters
        6dc42c5 Improve commentary in frame.el
        a8cffcf Fix typo in a doc string
-       9e79f19 (emacs-26) ; * src/fontset.c (set-fontset-font): Use uppercas...
+       9e79f19 (emacs-26) ; * src/fontset.c (set-fontset-font): Use uppercase...
 
        # Conflicts:
        #       lisp/vc/vc.el
        Make ‘delete-trailing-whitespace’ delete spaces after form feed
 
        * lisp/simple.el (delete-trailing-whitespace): Treat form fead as
-       a non-whitespace character (regradless of whether it’s character syntax
+       a non-whitespace character (regardless of whether it’s character syntax
        is whitespace) and delete any whitespace following it instead of leaving
        lines with form feeds completely unchanged.  I.e. a line like "\f " will
        now became "\f".
index fa55bc0fe55b2441028753f99467b0d889abd5d8..da5833e634d5a17dcc09bba2c16d629796a8e47b 100644 (file)
@@ -1,3 +1,483 @@
+2024-06-22  Stefan Kangas  <stefankangas@gmail.com>
+
+       * Version 29.4 released.
+
+2024-06-22  Stefan Kangas  <stefankangas@gmail.com>
+
+       Bump Emacs version to 29.4
+
+2024-06-22  Stefan Kangas  <stefankangas@gmail.com>
+
+       Update files for Emacs 29.4
+
+       * ChangeLog.4:
+       * etc/AUTHORS: Update for Emacs 29.4.
+
+2024-06-22  Stefan Kangas  <stefankangas@gmail.com>
+
+       * admin/authors.el: Update for Emacs 29.4
+
+2024-06-22  Stefan Kangas  <stefankangas@gmail.com>
+
+       * etc/NEWS: Update for Emacs 29.4
+
+2024-06-22  Ihor Radchenko  <yantar92@posteo.net>
+
+       org-link-expand-abbrev: Do not evaluate arbitrary unsafe Elisp code
+
+       * lisp/org/ol.el (org-link-expand-abbrev): Refuse expanding %(...)
+       link abbrevs that specify unsafe function.  Instead, display a
+       warning, and do not expand the abbrev.  Clear all the text properties
+       from the returned link, to avoid any potential vulnerabilities caused
+       by properties that may contain arbitrary Elisp.
+
+2024-06-21  Michael Albinus  <michael.albinus@gmx.de>
+
+       Update Tramp version (don't merge to master)
+
+       * lisp/net/trampver.el (customize-package-emacs-version-alist):
+       Adapt Tramp version integrated in Emacs 29.4.
+
+2024-06-20  Stefan Kangas  <stefankangas@gmail.com>
+
+       * admin/emacs-shell-lib: Backport to Bash 4.4 or older.
+
+2024-06-18  Michael Albinus  <michael.albinus@gmx.de>
+
+       Fix bug#49289 also for other auth-source backends
+
+       * lisp/auth-source.el (auth-info-password): Revert commit 59261e6f4fe.
+       (auth-source-secrets-create, auth-source-plstore-create):
+       Search also for :user.  (Bug#49289)
+
+2024-06-12  Michael Albinus  <michael.albinus@gmx.de>
+
+       Fix auth-info-password
+
+       * lisp/auth-source.el (auth-info-password): :secret can be a
+       cascaded function.
+
+2024-06-01  Yuan Fu  <casouri@gmail.com>
+
+       Fix treesit-parse-string crash (bug#71012)
+
+       Parsing a large file with treesit-parse-string and then printing the
+       returned node crashes Emacs, because with-temp-buffer kills the temp
+       buffer when treesit-parse-string returns, and print.c tries to access
+       the node's position in the killed buffer.
+
+       * lisp/treesit.el (treesit-parse-string): Don't use with-temp-buffer.
+
+2024-06-01  Yuan Fu  <casouri@gmail.com>
+
+       Check for buffer liveness when accessing tree-sitter node (bug#71012)
+
+       * src/treesit.h (treesit_node_buffer_live_p): Declare function.
+       * src/print.c (print_vectorlike): Print node without position if
+       buffer is killed.
+       * src/treesit.c (treesit_node_buffer_live_p): New function.
+       (treesit_check_node): Add buffer liveness check.
+       (syms_of_treesit): New error treesit-node-buffer-killed.
+
+2024-05-28  Eli Zaretskii  <eliz@gnu.org>
+
+       Improve documentation of case-conversion commands
+
+       * doc/emacs/text.texi (Case): Include the commands with negative
+       arguments.  (Bug#71220)
+
+2024-05-25  Eli Zaretskii  <eliz@gnu.org>
+
+       Avoid assertion violations in displaying under 'outline-minor-mode'
+
+       * src/xdisp.c (init_from_display_pos): Initialize BYTEPOS
+       correctly, since 'init_iterator' no longer computes it from
+       CHARPOS as needed.  This fixes a change made on Mar 13, 2013.
+       (Bug#71194)
+
+2024-05-25  Eli Zaretskii  <eliz@gnu.org>
+
+       Improve documentation of 'no-special-glyphs' frame parameter
+
+       * doc/lispref/frames.texi (Layout Parameters): Document
+       limitations of support for 'no-special-glyphs' frame parameter.
+       (Bug#71163)
+       * doc/lispref/display.texi (Truncation): Update for when
+       'fringe-mode' is off.
+
+2024-05-24  kobarity  <kobarity@gmail.com>
+
+       Fix Python font lock of chained assignment statement
+
+       * lisp/progmodes/python.el
+       (python-font-lock-keywords-maximum-decoration): Allow chaining
+       of single assignment statements.
+       * test/lisp/progmodes/python-tests.el
+       (python-font-lock-assignment-statement-20): New test.
+       (Bug#71093)
+
+2024-05-24  Brad Knotwell  <bknotwell@yahoo.com>  (tiny change)
+
+       Fix example in Calc manual
+
+       * doc/misc/calc.texi (Defining Simple Commands): Fix typo in
+       command names.  (Bug#71166)
+
+2024-05-22  Eli Zaretskii  <eliz@gnu.org>
+
+       Avoid crashes on MS-Windows due to invalid UNC file names
+
+       * src/w32.c (parse_root): Avoid crashes due to invalid (too short)
+       UNC names, such as "\\".  (Bug#70914)
+
+       * test/src/fileio-tests.el (fileio-tests-invalid-UNC): New test.
+
+2024-05-18  Eli Zaretskii  <eliz@gnu.org>
+
+       Document :box attribute caveats when used on display strings
+
+       * doc/lispref/display.texi (Replacing Specs, Face Attributes):
+       Mention special considerations when a display string has a
+       ':box' face attribute identical to the surrounding buffer text.
+       Suggested by JD Smith <jdtsmith@gmail.com>.  (Bug#70637)
+
+2024-05-18  Eli Zaretskii  <eliz@gnu.org>
+
+       Improve documentation of 'movemail'
+
+       * doc/emacs/rmail.texi (Movemail): Fix the name of the Mailutils
+       manual in the printed version.  Add index entries.  Move the
+       description of remote mailboxes to...
+       (Remote Mailboxes): ...here, to avoid duplication.
+
+2024-05-18  Jakub Ječmínek  <kuba@kubajecminek.cz>
+
+       Replace incorrect link in Rmail chapter of Emacs manual
+
+       * doc/emacs/rmail.texi (Movemail): Fix cross-reference to a node
+       in the Mailutils manual.  (Bug#71018)
+
+2024-05-08  Eli Zaretskii  <eliz@gnu.org>
+
+       Avoid errors in 'image-dired-tag-thumbnail'
+
+       * lisp/image/image-dired.el (image-dired-tag-thumbnail)
+       (image-dired-tag-thumbnail-remove): Move here from
+       image-dired-tags.el.  (Bug#70821)
+
+2024-04-27  Eli Zaretskii  <eliz@gnu.org>
+
+       Fix last change
+
+       * test/lisp/progmodes/csharp-mode-tests.el
+       (csharp-ts-mode-test-indentation): If need to skip the tree-sitter
+       test, do so silently.  (Bug#70345)
+
+2024-04-27  Brad Howes  <bradhowes@mac.com>  (tiny change)
+
+       Fix a typo in Introduction to Emacs Lisp (bug#70571).
+
+2024-04-25  Eli Zaretskii  <eliz@gnu.org>
+
+       Fix last change
+
+       * test/lisp/progmodes/csharp-mode-tests.el
+       (csharp-ts-mode-test-indentation): Move the test to here.
+       * test/lisp/progmodes/csharp-ts-mode-tests.el: Remove file.
+       * test/lisp/progmodes/csharp-ts-mode-resources/indent.erts: Move
+       to test/lisp/progmodes/csharp-mode-resources/indent-ts.erts.
+
+2024-04-25  Jacob Leeming  <jacobtophatleeming@gmail.com>  (tiny change)
+
+       Fix indentation of if/else in 'csharp-ts-mode' (bug#70345)
+
+       * lisp/progmodes/csharp-mode.el (csharp-ts-mode--indent-rules):
+       Fix indentation rules for 'if' and 'else'.
+
+       * test/lisp/progmodes/csharp-ts-mode-tests.el:
+       * test/lisp/progmodes/csharp-ts-mode-resources/indent.erts: New
+       test files.
+
+2024-04-23  Ulrich Müller  <ulm@gentoo.org>
+
+       * build-aux/make-info-dir: Avoid bashism (bug#70484).
+
+2024-04-23  Eli Zaretskii  <eliz@gnu.org>
+
+       Improve documentation of selection and navigation in *xref* buffers
+
+       * doc/emacs/maintaining.texi (Looking Up Identifiers): More
+       detailed description of 'xref-auto-jump-to-first-definition'.
+       Improve indexing.  Describe the use of 'next-error' and
+       'previous-error' in conjunction with the *xref* buffer.
+       (Identifier Search): More detailed description of
+       'xref-auto-jump-to-first-xref'.  Describe the use of 'next-error'
+       and 'previous-error'.
+
+2024-04-22  Stephen Berman  <stephen.berman@gmx.net>
+
+       Fix Widget manual typos, markup and omissions (bug#70502)
+
+       * doc/misc/widget.texi (Widgets and the Buffer): Correct typos and
+       texinfo markup, add equivalent key bindings and make minor changes
+       in wording.
+       (Customization): Correct names of two faces and add documentation
+       of remaining widget faces.
+
+2024-04-22  Prateek Sharma  <ps.prateek.sharma143@gmail.com>
+
+       Fix python-ts-mode built-in functions and attributes (bug#70478)
+
+       * lisp/progmodes/python.el (python--treesit-settings): Change the
+       treesitter query to fetch the correct type of node for built-in
+       functions and attributes and highlight them with corresponding
+       font-lock face.
+
+2024-04-21  Eli Zaretskii  <eliz@gnu.org>
+
+       Fix markup and indexing in the Calendar chapter of user manual
+
+       * doc/emacs/calendar.texi (Calendar Unit Motion)
+       (Scroll Calendar, Writing Calendar Files, Holidays)
+       (Sunrise/Sunset, Lunar Phases, Calendar Systems)
+       (To Other Calendar, Displaying the Diary, Date Formats)
+       (Adding to Diary, Special Diary Entries): Fix markup, style, and
+       indexing.
+
+2024-04-21  Gautier Ponsinet  <gautier@gautierponsinet.xyz>
+
+       Fix the user manual for `calendar-time-zone-style'
+
+       * doc/emacs/calendar.texi (Sunrise/Sunset): Refer to the
+       variable `calendar-time-zone-style' explicitly.  (Bug#70498)
+
+2024-04-21  Eli Zaretskii  <eliz@gnu.org>
+
+       Avoid assertion violations in 'push_prefix_prop'
+
+       * src/xdisp.c (push_prefix_prop): Set the
+       'string_from_prefix_prop_p' flag for any valid value of the
+       'line-prefix' or 'wrap-prefix' property/variable.  (Bug#70495)
+
+2024-04-20  Basil L. Contovounesios  <basil@contovou.net>
+
+       Remove ert-equal-including-properties from manual
+
+       * doc/misc/ert.texi (Useful Techniques): Mention only
+       equal-including-properties in place of the now obsolete
+       ert-equal-including-properties.
+
+2024-04-14  Eli Zaretskii  <eliz@gnu.org>
+
+       * lisp/dnd.el (dnd-handle-movement): Avoid errors (bug#70311).
+
+2024-04-13  Stefan Kangas  <stefankangas@gmail.com>
+
+       * doc/misc/calc.texi: Improve indexing.
+
+2024-04-11  Eli Zaretskii  <eliz@gnu.org>
+
+       Fix display of vscrolled windows
+
+       * src/xdisp.c (redisplay_window): Fix condition for resetting the
+       window's vscroll.  (Bug#70038)
+
+2024-04-10  Peter Oliver  <git@mavit.org.uk>
+
+       * doc/emacs/misc.texi (emacsclient Options): Suggest forwarding sockets.
+
+       (Bug#66667)
+
+2024-04-10  Yuan Fu  <casouri@gmail.com>
+
+       Update go-ts-mode to support latest tree-sitter-go grammar
+
+       tree-sitter-go changed method_spec to method_elem in
+       https://github.com/tree-sitter/tree-sitter-go/commit/b82ab803d887002a0af11f6ce63d72884580bf33
+
+       * lisp/progmodes/go-ts-mode.el:
+       (go-ts-mode--method-elem-supported-p): New function.
+       (go-ts-mode--font-lock-settings): Conditionally use method_elem or
+       method_spec in the query.
+
+2024-04-09  Yuan Fu  <casouri@gmail.com>
+
+       Fix c++-ts-mode defun navigation (bug#65885)
+
+       * lisp/progmodes/c-ts-mode.el (c-ts-base-mode): Add BOL and EOL marker
+       in the regexp.
+
+2024-03-31  Michael Albinus  <michael.albinus@gmx.de>
+
+       Adapt Tramp version (don't merge)
+
+       * doc/misc/trampver.texi:
+       * lisp/net/trampver.el: Change version to "2.6.3".
+       (customize-package-emacs-version-alist):
+       Adapt Tramp version integrated in Emacs 29.3.
+
+2024-03-31  Xuan Wang  <code@wangxuan.name>  (tiny change)
+
+       Fix warning-suppress for list type "warning type"
+
+       Per the documentation of 'warning-suppress-types' and the
+       implementation of 'warning-suppress-p', a warning type can
+       be either a symbol or a list of symbols.  The previous
+       implementation could generate wrong 'warning-suppress-types':
+
+         old behavior:
+         type              warning-suppress-types
+         pkg           ->    '((pkg))                  Correct
+         (pkg subtype) ->    '(((pkg subtype)))        Incorrect
+
+       Now we check whether type is a cons cell first.  (Should not
+       use listp here, as listp returns t for nil.)
+
+         new behavior:
+         type              warning-suppress-types
+         pkg           ->    '((pkg))                Correct
+         (pkg subtype) ->    '((pkg subtype))        Correct
+
+       * lisp/emacs-lisp/warnings.el (warnings-suppress): Fix saving
+       warning types in 'warning-suppress-types'.  (Bug#70063)
+
+2024-03-31  Theodor Thornhill  <theo@thornhill.no>
+
+       Make object init more robust (bug#69571)
+
+       * lisp/progmodes/csharp-mode.el (csharp-guess-basic-syntax): Make the
+       regex same as before, but conditionally check other heuristics rather
+       than crazy regex shenanigans.
+
+2024-03-30  Eli Zaretskii  <eliz@gnu.org>
+
+       Avoid errors in Info-search-case-sensitively in DIR buffers
+
+       * lisp/info.el (Info-search): Don't run the "try other subfiles"
+       code if there are no subfiles.  This happens, for example, in DIR
+       files.  (Bug#70058)
+
+2024-03-28  Theodor Thornhill  <theo@thornhill.no>
+
+       Add test for previous change (bug#70023)
+
+       * test/lisp/progmodes/typescript-ts-mode-resources/indent.erts: Add
+       test.
+
+2024-03-28  Noah Peart  <noah.v.peart@gmail.com>
+
+       Add typescript-ts-mode indentation for interface bodies (bug#70023)
+
+       * lisp/progmodes/typescript-ts-mode.el
+       (typescript-ts-mode--indent-rules): Add indentation rule for
+       interface bodies.
+
+2024-03-26  Andrea Corallo  <acorallo@gnu.org>
+
+       * Don't install unnecessary trampolines (bug#69573) (don't merge)
+
+       * lisp/emacs-lisp/comp.el (comp-subr-trampoline-install):
+       Check that subr-name actually matches the target subr.
+
+2024-03-25  Eli Zaretskii  <eliz@gnu.org>
+
+       Improve documentation of <Delete> in user manual
+
+       * doc/emacs/basic.texi (Erasing): Document that <Delete> deletes
+       entire grapheme clusters.
+
+2024-03-25  Eli Zaretskii  <eliz@gnu.org>
+
+       Fix documentation of 'other-window-for-scrolling'
+
+       * src/window.c (Fother_window_for_scrolling): More accurate
+       documentation of how "the other" window is looked for.  Suggested
+       by Karthik Chikmagalur <karthikchikmagalur@gmail.com>.
+
+2024-03-24  Eli Zaretskii  <eliz@gnu.org>
+
+       Bump Emacs version to 29.3.50
+
+       * README:
+       * configure.ac:
+       * nt/README.W32:
+       * msdos/sed2v2.inp:
+       * etc/NEWS: Bump Emacs version to 29.3.50.
+
+2024-03-24  Eli Zaretskii  <eliz@gnu.org>
+
+       Update files for Emacs 29.3
+
+       * ChangeLog.4:
+       * etc/AUTHORS:
+       * etc/HISTORY: Update for Emacs 29.3.
+
+2024-03-24  Eli Zaretskii  <eliz@gnu.org>
+
+       * lisp/ldefs-boot.el: Regenerate.
+
+2024-03-24  Eli Zaretskii  <eliz@gnu.org>
+
+       Bump Emacs version to 29.3
+
+       * README:
+       * configure.ac:
+       * nt/README.W32:
+       * msdos/sed2v2.inp: Bump Emacs version to 29.3.
+
+2024-03-24  Ihor Radchenko  <yantar92@posteo.net>
+
+       org--confirm-resource-safe: Fix prompt when prompting in non-file Org buffers
+
+       * lisp/org/org.el (org--confirm-resource-safe): When called from
+       non-file buffer, do not put stray "f" in the prompt.
+
+2024-03-24  Ihor Radchenko  <yantar92@posteo.net>
+
+       org-file-contents: Consider all remote files unsafe
+
+       * lisp/org/org.el (org-file-contents): When loading files, consider all
+       remote files (like TRAMP-fetched files) unsafe, in addition to URLs.
+
+2024-03-24  Ihor Radchenko  <yantar92@posteo.net>
+
+       org-latex-preview: Add protection when `untrusted-content' is non-nil
+
+       * lisp/org/org.el (org--latex-preview-when-risky): New variable
+       controlling how to handle LaTeX previews in Org files from untrusted
+       origin.
+       (org-latex-preview): Consult `org--latex-preview-when-risky' before
+       generating previews.
+
+       This patch adds a layer of protection when LaTeX preview is requested
+       for an email attachment, where `untrusted-content' is set to non-nil.
+
+2024-03-24  Ihor Radchenko  <yantar92@posteo.net>
+
+       * lisp/gnus/mm-view.el (mm-display-inline-fontify): Mark contents untrusted.
+
+2024-03-24  Ihor Radchenko  <yantar92@posteo.net>
+
+       * lisp/files.el (untrusted-content): New variable.
+
+       The new variable is to be used when buffer contents comes from untrusted
+       source.
+
+2024-03-24  Ihor Radchenko  <yantar92@posteo.net>
+
+       org-macro--set-templates: Prevent code evaluation
+
+       * lisp/org/org-macro.el (org-macro--set-templates): Get rid of any
+       risk to evaluate code when `org-macro--set-templates' is called as a
+       part of major mode initialization.  This way, no code evaluation is
+       ever triggered when user merely opens the file or when
+       `mm-display-org-inline' invokes Org major mode to fontify mime part
+       preview in email messages.
+
+2024-03-24  Eli Zaretskii  <eliz@gnu.org>
+
+       * admin/authors.el (authors-aliases): Add ignored authors.
+
 2024-03-24  Ihor Radchenko  <yantar92@posteo.net>
 
        org--confirm-resource-safe: Fix prompt when prompting in non-file Org buffers
index e86ef7a2a773175774bdafed16a992646a77c5e8..1acf157dfbf4cafeaf30d45d3e6864e8c605e9d2 100644 (file)
        (syms_of_androidselect): Define it.
 
        * src/emacs.c (load_pdump): Eschew excessively elaborate dump file
-       location code on on Android.
+       location code on Android.
 
        * src/pdumper.c (Fdump_emacs_portable): Allow dumping while
        interactive on Android.
index f01302b793156cc0ba54821deaab3134877a0503..733e548a598bd1e026e03fc5d1375e89a48ca2a2 100644 (file)
@@ -87,7 +87,7 @@ be shown.  On positions 3,4, and 7, the @samp{alog} function will be
 As is my wont, I started hacking on it almost immediately. I first
 The latter criterion is the "je ne sais quoi" of the artistic aspect of
 order but are now listed consecutively en bloc.
-      "mot de passe" "Mot de passe")
+     "mot de passe" "Mot de passe")
        Reported by Mor Zahavi <morzahavi@me.com>.  (Bug#51271)
        * etc/refcards/fr-refcard.tex (section{Formater}): Remove mention
        Reported by Ture Pålsson.
index 02bd6d05838b63c2b506529c496b6c484137786a..ebb85e510bbcf6cc165d71b69ef7cec9ab04f86f 100644 (file)
@@ -32,6 +32,7 @@ msdos
 ot
 parm
 parms
+proced
 reenable
 reenabled
 requestor
index ee8f418414ce91f588a9b0a23ed30485a17e7d9e..e2d4c019b4a1bd74687f6cd6154c3f2af2d8dbb5 100644 (file)
 
 2011-05-10  Jim Meyering  <meyering@redhat.com>
 
-       * minibuf.texi: Fix typo "in in -> in".
+       * minibuf.texi: Fix typo.
 
 2011-05-06  Paul Eggert  <eggert@cs.ucla.edu>
 
index e496e1cf81784ac3417d1c365de7fbb4c255fa25..01666456c9c0f97256cc0c49f0bcbee57d72892d 100644 (file)
@@ -29,7 +29,7 @@ current buffer, using a given set of rules.
 @cindex root, of parsing expression grammar
 @cindex entry-point, of parsing expression grammar
 Each rule in a @acronym{PEG} is referred to as a @dfn{parsing
-expression} (@acronym{PEX}), and can be specified a literal string, a
+expression} (@acronym{PEX}), and can be specified a literal string, a
 regexp-like character range or set, a peg-specific construct resembling
 an Emacs Lisp function call, a reference to another rule, or a
 combination of any of these.  A grammar is expressed as a tree of rules
index 7f299180fc6b62e574f2bebf49fc3604c32b8224..156b4297501e9dd660fbcb70960a36555d29019a 100644 (file)
@@ -5128,7 +5128,7 @@ started on line 2.  Lines 4 and 5 get the syntaxes
 though part of a function.
 
 Note that the @code{requires} on Line 3 begins a @dfn{requires
-expression}, not a requires clause, hence its components are not
+expression}, not a requires clause, hence its components are not
 assigned @code{constraint-cont}.  See
 @url{https://en.cppreference.com/w/cpp/language/requires}.
 
index 4fcdcf9babea79ad0e8d0f22dd8083ca2a675573..745959f9c093ede9ff728f2707ecde6ed98f9f23 100644 (file)
@@ -20409,7 +20409,7 @@ Anyway, if you'd like to dig into it yourself, here's an example:
  (read-only nil)
  (orphan -10)
  (adapt t)
- (files "/hom/larsi/News/gnu.SCORE")
+ (files "/home/larsi/News/gnu.SCORE")
  (exclude-files "all.SCORE")
  (local (gnus-newsgroup-auto-expire t)
         (gnus-summary-make-false-root empty))
index edeb7d3ab6c69c616bb0cdc73d0ef73aeeddb937..519d9ca2ee9cfa5e7104cb0f120778641437fec6 100644 (file)
@@ -177,7 +177,7 @@ Previously, when exporting to Org, all the citations and
 =print_bibliography= keywords, were transformed according to the
 chosen citation processor.
 
-This is no loner the case.  All the citation-related markup is now
+This is no longer the case.  All the citation-related markup is now
 exported as is.
 
 The previous behavior can be reverted by setting new custom option
index 7ee0c8cc71e5903404a44accfd0fdaf54983d085..08bd56ede70507362ad277986ca84a64e58486e8 100644 (file)
@@ -848,7 +848,7 @@ more..."
    `(org-example ((,class (:foreground "blue" :background "#EEFFEE"))))
    `(org-footnote ((,class (:underline t :foreground "#008ED1"))))
    `(org-formula ((,class (:foreground "chocolate1"))))
-   ;; org-habit colours are thanks to zenburn
+   ;; org-habit colors are thanks to zenburn
    `(org-habit-ready-face ((t :background "#7F9F7F"))) ; ,zenburn-green
    `(org-habit-alert-face ((t :background "#E0CF9F" :foreground "#3F3F3F"))) ; ,zenburn-yellow-1 fg ,zenburn-bg
    `(org-habit-clear-face ((t :background "#5C888B")))                       ; ,zenburn-blue-3
index 49296aaf3a75091e1dbe7f01f1d4f819e4c402dd..037bb41092b6282fc18015a2a7ffc3d65a66e089 100644 (file)
 
 1986-01-18  Richard M. Stallman  (rms@prep)
 
-       * doctor.el: Fix typo "symtoms".
+       * doctor.el: Fix typo for "symptoms".
 
 1986-01-10  Richard Mlynarik  (mly@prep)
 
index 1504d89731da5b939b617f55358fee914d8cd6a3..e2657dbabd81573e680548410e619d66f5fa7a3e 100644 (file)
@@ -256,7 +256,7 @@ specifying a region in the current buffer, or (:file . FILENAME)
 to temporarily insert the contents of FILENAME.
 
 Before executing BODY, narrow the buffer to the text for COMMAND
-and and set point to the beginning of the narrowed region.
+and set point to the beginning of the narrowed region.
 
 The value returned is the last form in BODY."
   (declare (indent 1))
index 1633b8835ebd276782dd01a038488876ad819f0b..fa376f02a7ec3dd91c42288dd0e5b719281d369b 100644 (file)
 
 2011-05-10  Jim Meyering  <meyering@redhat.com>
 
-       * shr.el (shr-colorize-region): Fix typo "on on -> on".
+       * shr.el (shr-colorize-region): Fix typo.
 
 2011-05-10  Julien Danjou  <julien@danjou.info>
 
index db75f1f0ad5c562e64b5ad94a60b7e6191420549..8ea1ff6d1a59e2d66d5e9907ece4284b3a2ef06b 100644 (file)
@@ -2861,7 +2861,7 @@ file's directory then expand relative links.
 
 If the optional TYPE is passed as `attachment' and the path is a
 descendant of the DEFAULT-DIRECTORY, the generated link will be
-specified as an an \"attachment:\" style link."
+specified as an \"attachment:\" style link."
   (when (stringp result)
     (let* ((result-file-name (expand-file-name result))
            (base-file-name (buffer-file-name (buffer-base-buffer)))
index 39dda4332aaa22204301608a55cdad821e05cbe4..cabed6acf72148106a5a3a722c12bcfec1a9654b 100644 (file)
@@ -105,7 +105,7 @@ For details see the variable `org-adapt-indentation'."
 
 (defcustom org-indent-post-buffer-init-functions nil
   "Hook run after org-indent finishes initializing a buffer.
-The function(s) in in this hook must accept a single argument representing
+The function(s) in this hook must accept a single argument representing
 the initialized buffer."
   :group 'org-indent
   :package-version '(Org . "9.7")
index 2be404e368ee75ba71f031c2e3080831ea38c80b..1e6c10d8011a133207e02840de29479d9f898e98 100644 (file)
@@ -15434,7 +15434,7 @@ When SUPPRESS-TMP-DELAY is non-nil, suppress delays like
 (defun org-modify-ts-extra (ts-string pos nincrements increment-step)
   "Change the lead-time/repeat fields at POS in timestamp string TS-STRING.
 POS is the position in the timestamp string to be changed.
-NINCREMENTS is the number of incremenets/decrements.
+NINCREMENTS is the number of increments/decrements.
 
 INCREMENT-STEP is step used for a single increment when POS in on
 minutes.  Before incrementing minutes, they are rounded to
index 06b919f26fd8e2ce38b92d29cf784fe62b46f90b..233d23492b6354c10558770ae954a6c9832438f1 100644 (file)
@@ -1954,7 +1954,7 @@ ender."
 ;; The following is no longer used (2020-02-16).
 ;; (c-lang-defconst c-last-open-c-comment-start-on-line-re
 ;;   "Regexp which matches the last block comment start on the
-;; current ine, if any, or nil in those languages without block
+;; current one, if any, or nil in those languages without block
 ;; comments.  When a match is found, submatch 1 contains the comment
 ;; starter."
 ;;   t "\\(/\\*\\)\\([^*]\\|\\*+\\([^*/]\\|$\\)\\)*$"
index 687b176009e187b774f4c258880aa404d8c39586..85fc6b930f598706e3ea63b224fef2c45999b840 100644 (file)
@@ -347,7 +347,7 @@ The actually processing is done by DO-STRING and DO-REGION
 DEFVAR forms reset the variables to the init values."
   (save-excursion
     ;; Find the end of the defun this way to avoid having the region
-    ;; possibly end with a comment (it there'a a comment after the
+    ;; possibly end with a comment (it there's a comment after the
     ;; final parenthesis).
     (beginning-of-defun)
     (forward-sexp)
index 1f7d6f5b3eee483f80de7cc0d7cd87e40566df19..bede26b7da5b3d67f122ca805cbc37e9752faa39 100644 (file)
@@ -717,7 +717,7 @@ characters of the current line."
      (c-ts-common-comment-2nd-line-matcher
       c-ts-common-comment-2nd-line-anchor
       1)))
-  "Tree-sitter indentation rules for for `phpdoc'.")
+  "Tree-sitter indentation rules for `phpdoc'.")
 
 \f
 ;;; Font-lock
@@ -1561,7 +1561,7 @@ The optional TYPE can be the symbol \"port\", \"hostname\", \"document-root\" or
 (defun run-php (&optional cmd config)
   "Run an PHP interpreter as a inferior process.
 
-Arguments CMD an CONFIG, default to `php-ts-mode-php-executable'
+Arguments CMD and CONFIG, default to `php-ts-mode-php-executable'
 and `php-ts-mode-php-config' respectively, control which PHP interpreter is run.
 Prompt for CMD if `php-ts-mode-php-executable' is nil.
 Optional CONFIG, if supplied, is the php.ini file to use."
index 5c7443741282458e6cead83e9af1dbe959c47423..f126df8955a8f4b61bcbfe7b71f7e888eb05b9c4 100644 (file)
@@ -1418,7 +1418,7 @@ Leave point at the beginning of the tag."
        (with-syntax-table sgml-tag-syntax-table
          (let ((pos (point)))
            (condition-case nil
-                ;; FIXME: This does not correctly skip over PI an CDATA tags.
+                ;; FIXME: This does not correctly skip over PI and CDATA tags.
                (sgml-forward-sexp 1)
              (scan-error
               ;; This < seems to be just a spurious one, let's ignore it.
index e9567d262c64dfde3de54512a2306c5e76aa21d9..ee7a1cea3338e17e667a9778feca190c617e3591 100644 (file)
@@ -1052,7 +1052,7 @@ replacement.
 In the second case, the second string is used to provide a longer
 name for the keys under a prefix.
 
-MORE allows you to specifcy additional KEY REPLACEMENT pairs.  All
+MORE allows you to specify additional KEY REPLACEMENT pairs.  All
 replacements are added to `which-key-replacement-alist'."
   ;; TODO: Make interactive
   (while key-sequence
@@ -1923,7 +1923,7 @@ Requires `which-key-compute-remaps' to be non-nil."
 PREFIX limits bindings to those starting with this key
 sequence.  START is a list of existing bindings to add to.  If ALL
 is non-nil, recursively retrieve all bindings below PREFIX.  If
-EVIL is non-nil, extract active evil bidings."
+EVIL is non-nil, extract active evil bindings."
   (let ((bindings start)
         (ignore '(self-insert-command ignore ignore-event company-ignore))
         (evil-map
index 7792bd88c015c691f49e8716c3b17ccce5c040d0..798e87dd57227d5f1db1ee6c104a48bdb45a3d7c 100644 (file)
        Assume C89 or later for math functions (Bug#12381).
        This simplifies the code, and makes it a bit smaller and faster,
        and (most important) makes it easier to clean up signal handling
-       since we can stop worring about floating-point exceptions in
+       since we can stop worrying about floating-point exceptions in
        library code.  That was a problem before C89, but the problem
        went away many years ago on all practical Emacs targets.
        * data.c, image.c, lread.c, print.c:
index e71471f4a7c608cc7c4d71a83d61944670ec4733..359a4fa3a729601c30425a65f25c0c7cb450c326 100644 (file)
@@ -605,7 +605,7 @@ get_encoder_clsid (const char *type, CLSID *clsid)
 
 DEFUN ("w32image-create-thumbnail", Fw32image_create_thumbnail,
        Sw32image_create_thumbnail, 5, 5, 0,
-       doc: /* Create a HEIGHT by WIDTH thumnail file THUMB-FILE for image INPUT-FILE.
+       doc: /* Create a HEIGHT by WIDTH thumbnail file THUMB-FILE for image INPUT-FILE.
 TYPE is the image type to use for the thumbnail file, a string.  It is
 usually identical to the file-name extension of THUMB-FILE, but without
 the leading period, and both "jpeg" and "jpg" can be used for JPEG.
index 8d2f6397e9d1f062c7a017d86e113704d23569f5..4c59ad6249a18def151bd4f9686f05ef28a56b84 100644 (file)
@@ -8,7 +8,7 @@ print $string_with_strange_delimiters;
 $printed = 1;
 
 # With cperl-extra-delimiters-mode=on the previous lines are a label
-# and a print statement.  This line here is a comment.  Without
+# and a print statement.  This line here is a comment.  Without
 # cperl-extra-delimiters-mode, all this is part of the variable
 # declaration.
 
index a916aed9eb3bf17aee8298734795282eef6c57b4..3ca1297f5ec526fceee70cbd9c34b5cf3749d69f 100644 (file)
@@ -201,7 +201,7 @@ to `ses--bar' and inserting a row, makes A2 value empty, and `ses--bar' equal to
 
 
 (ert-deftest ses-jump-B2-lowcase ()
-  "Test jumping to cell B2 by use of lowcase cell name string"
+  "Test jumping to cell B2 by use of lowercase cell name string"
     (let ((ses-initial-size '(3 . 3))
           ses-after-entry-functions)
       (with-temp-buffer
@@ -211,7 +211,7 @@ to `ses--bar' and inserting a row, makes A2 value empty, and `ses--bar' equal to
         (should (eq (ses--cell-at-pos (point)) 'B2)))))
 
 (ert-deftest ses-jump-B2-lowcase-keys ()
-  "Test jumping to cell B2 by use of lowcase cell name string with simulating keys"
+  "Test jumping to cell B2 by use of lowercase cell name string with simulating keys"
     (let ((ses-initial-size '(3 . 3))
           ses-after-entry-functions)
       (with-temp-buffer