; Fix a few more typos

This commit is contained in:
Stefan Kangas 2023-12-10 14:05:34 +01:00
parent 06a12b0ccc
commit 7d283ca1a3
9 changed files with 11 additions and 11 deletions

View file

@ -4514,7 +4514,7 @@ bounds of the selection data in the buffer @var{buf}.
Selections under such window systems as MS-Windows, Nextstep, Haiku
and Android are not aligned with those under X@. Each of these window
system improvises its own selection mechanism without employing the
``selection converter'' mechanism illustrated in the preceeding node.
``selection converter'' mechanism illustrated in the preceding node.
Only the @code{PRIMARY}, @code{CLIPBOARD}, and @code{SECONDARY}
selections are generally supported, with the @code{XdndSelection}
selection that records drag-and-drop data also available under
@ -4852,7 +4852,7 @@ is the selection data itself (@pxref{Accessing Selections}).
sometimes distinct from those provided by the ICCCM and conforming
clipboard or primary selection owners. Frequently, the name of a MIME
type, such as @code{"text/plain;charset=utf-8"} (with discrepant
capitalization of the ``utf-8''), is substitued for a standard X
capitalization of the ``utf-8''), is substituted for a standard X
selection name such as @code{UTF8_STRING}.
@cindex XDS

View file

@ -428,7 +428,7 @@ public final class EmacsWindow extends EmacsHandleObject
manager = EmacsWindowAttachmentManager.MANAGER;
/* If parent is the root window, notice that there are new
children available for interested activites to pick
children available for interested activities to pick
up. */
manager.registerWindow (EmacsWindow.this);

View file

@ -2189,7 +2189,7 @@ removed from the list will be disabled."
move-to-prompt)
(const :tag "netsplit: Detect netsplits" netsplit)
(const :tag "networks: Provide data about IRC networks" networks)
(const :tag "nickbar: Show nicknames in a dyamic side window" nickbar)
(const :tag "nickbar: Show nicknames in a dynamic side window" nickbar)
(const :tag "nicks: Uniquely colorize nicknames in target buffers" nicks)
(const :tag "noncommands: Deprecated. See module `command-indicator'."
noncommands)

View file

@ -92,7 +92,7 @@ Otherwise, `rmdir' is required."
:group 'eshell-unix)
(define-widget 'eshell-interactive-query 'radio
"When to interatively query the user about a particular operation.
"When to interactively query the user about a particular operation.
If t, always query. If nil, never query. If `root', query when
the user is logged in as root (including when `default-directory'
is remote with a root user)."

View file

@ -1239,7 +1239,7 @@ Operations not mentioned here will be handled by the normal Emacs functions.")
(with-current-buffer (tramp-get-connection-buffer v)
(goto-char (point-min))
(tramp-set-file-property v localname "file-symlink-marker" (read (current-buffer)))
;; We cannote call `read', the file name isn't quoted.
;; We cannot call `read', the file name isn't quoted.
(forward-line)
(buffer-substring (point) (line-end-position))))

View file

@ -1801,7 +1801,7 @@ and `+='...)."
actual-parms nil)))
(t
(error "Interal error: impossible case."))))
(error "Internal error: impossible case"))))
(pop actual-parms)
while actual-parms) ; end cl-loop

View file

@ -3566,7 +3566,7 @@ have a history of their own.")
(propertize "\n" 'face face 'line-height t))))
(defmacro transient-with-shadowed-buffer (&rest body)
"While in the transient buffer, temporarly make the shadowed buffer current."
"While in the transient buffer, temporarily make the shadowed buffer current."
(declare (indent 0) (debug t))
`(with-current-buffer (or transient--shadowed-buffer (current-buffer))
,@body))

View file

@ -2783,7 +2783,7 @@ sfnt_decompose_compound_glyph (struct sfnt_glyph *glyph,
else
{
/* The offset is determined by matching a point location in
a preceeding component with a point location in the
a preceding component with a point location in the
current component. The index of the point in the
previous component can be determined by adding
component->argument1.a or component->argument1.c to
@ -11880,7 +11880,7 @@ sfnt_interpret_compound_glyph_1 (struct sfnt_glyph *glyph,
else
{
/* The offset is determined by matching a point location in
a preceeding component with a point location in the
a preceding component with a point location in the
current component. The index of the point in the
previous component is established by adding
component->argument1.a or component->argument1.c to

View file

@ -3286,7 +3286,7 @@ treesit_traverse_get_predicate (Lisp_Object thing, Lisp_Object language)
there's an error, set SIGNAL_DATA to (ERR . DATA), where ERR is an
error symbol, and DATA is something signal accepts, and return
false, otherwise return true. This function also check for
recusion levels: we place a arbitrary 100 level limit on recursive
recursion levels: we place a arbitrary 100 level limit on recursive
predicates. RECURSION_LEVEL is the current recursion level (that
starts at 0), if it goes over 99, return false and set SIGNAL_DATA.
LANGUAGE is a LANGUAGE symbol. */