aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2023-12-10 14:05:34 +0100
committerStefan Kangas2023-12-10 14:06:45 +0100
commit7d283ca1a32d1005ab3b7986692d91ee071ebde7 (patch)
tree5475f9efe7039e247c12b6d6c20c7272ea9b302f
parent06a12b0cccbda419752f3388346be7d302ebcbeb (diff)
downloademacs-7d283ca1a32d1005ab3b7986692d91ee071ebde7.tar.gz
emacs-7d283ca1a32d1005ab3b7986692d91ee071ebde7.zip
; Fix a few more typos
-rw-r--r--doc/lispref/frames.texi4
-rw-r--r--java/org/gnu/emacs/EmacsWindow.java2
-rw-r--r--lisp/erc/erc.el2
-rw-r--r--lisp/eshell/em-unix.el2
-rw-r--r--lisp/net/tramp-sh.el2
-rw-r--r--lisp/progmodes/hideif.el2
-rw-r--r--lisp/transient.el2
-rw-r--r--src/sfnt.c4
-rw-r--r--src/treesit.c2
9 files changed, 11 insertions, 11 deletions
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index f09ee0afbf4..f6f9e56e0c7 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -4514,7 +4514,7 @@ bounds of the selection data in the buffer @var{buf}.
4514 Selections under such window systems as MS-Windows, Nextstep, Haiku 4514 Selections under such window systems as MS-Windows, Nextstep, Haiku
4515and Android are not aligned with those under X@. Each of these window 4515and Android are not aligned with those under X@. Each of these window
4516system improvises its own selection mechanism without employing the 4516system improvises its own selection mechanism without employing the
4517``selection converter'' mechanism illustrated in the preceeding node. 4517``selection converter'' mechanism illustrated in the preceding node.
4518Only the @code{PRIMARY}, @code{CLIPBOARD}, and @code{SECONDARY} 4518Only the @code{PRIMARY}, @code{CLIPBOARD}, and @code{SECONDARY}
4519selections are generally supported, with the @code{XdndSelection} 4519selections are generally supported, with the @code{XdndSelection}
4520selection that records drag-and-drop data also available under 4520selection that records drag-and-drop data also available under
@@ -4852,7 +4852,7 @@ is the selection data itself (@pxref{Accessing Selections}).
4852sometimes distinct from those provided by the ICCCM and conforming 4852sometimes distinct from those provided by the ICCCM and conforming
4853clipboard or primary selection owners. Frequently, the name of a MIME 4853clipboard or primary selection owners. Frequently, the name of a MIME
4854type, such as @code{"text/plain;charset=utf-8"} (with discrepant 4854type, such as @code{"text/plain;charset=utf-8"} (with discrepant
4855capitalization of the ``utf-8''), is substitued for a standard X 4855capitalization of the ``utf-8''), is substituted for a standard X
4856selection name such as @code{UTF8_STRING}. 4856selection name such as @code{UTF8_STRING}.
4857 4857
4858@cindex XDS 4858@cindex XDS
diff --git a/java/org/gnu/emacs/EmacsWindow.java b/java/org/gnu/emacs/EmacsWindow.java
index 2c446913eba..3c9e6eb215f 100644
--- a/java/org/gnu/emacs/EmacsWindow.java
+++ b/java/org/gnu/emacs/EmacsWindow.java
@@ -428,7 +428,7 @@ public final class EmacsWindow extends EmacsHandleObject
428 manager = EmacsWindowAttachmentManager.MANAGER; 428 manager = EmacsWindowAttachmentManager.MANAGER;
429 429
430 /* If parent is the root window, notice that there are new 430 /* If parent is the root window, notice that there are new
431 children available for interested activites to pick 431 children available for interested activities to pick
432 up. */ 432 up. */
433 manager.registerWindow (EmacsWindow.this); 433 manager.registerWindow (EmacsWindow.this);
434 434
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index 616129bf780..62fdc0ad6e8 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -2189,7 +2189,7 @@ removed from the list will be disabled."
2189 move-to-prompt) 2189 move-to-prompt)
2190 (const :tag "netsplit: Detect netsplits" netsplit) 2190 (const :tag "netsplit: Detect netsplits" netsplit)
2191 (const :tag "networks: Provide data about IRC networks" networks) 2191 (const :tag "networks: Provide data about IRC networks" networks)
2192 (const :tag "nickbar: Show nicknames in a dyamic side window" nickbar) 2192 (const :tag "nickbar: Show nicknames in a dynamic side window" nickbar)
2193 (const :tag "nicks: Uniquely colorize nicknames in target buffers" nicks) 2193 (const :tag "nicks: Uniquely colorize nicknames in target buffers" nicks)
2194 (const :tag "noncommands: Deprecated. See module `command-indicator'." 2194 (const :tag "noncommands: Deprecated. See module `command-indicator'."
2195 noncommands) 2195 noncommands)
diff --git a/lisp/eshell/em-unix.el b/lisp/eshell/em-unix.el
index 509b2d31819..67e5bda021b 100644
--- a/lisp/eshell/em-unix.el
+++ b/lisp/eshell/em-unix.el
@@ -92,7 +92,7 @@ Otherwise, `rmdir' is required."
92 :group 'eshell-unix) 92 :group 'eshell-unix)
93 93
94(define-widget 'eshell-interactive-query 'radio 94(define-widget 'eshell-interactive-query 'radio
95 "When to interatively query the user about a particular operation. 95 "When to interactively query the user about a particular operation.
96If t, always query. If nil, never query. If `root', query when 96If t, always query. If nil, never query. If `root', query when
97the user is logged in as root (including when `default-directory' 97the user is logged in as root (including when `default-directory'
98is remote with a root user)." 98is remote with a root user)."
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el
index 660b5f53a5f..a7ead1f2997 100644
--- a/lisp/net/tramp-sh.el
+++ b/lisp/net/tramp-sh.el
@@ -1239,7 +1239,7 @@ Operations not mentioned here will be handled by the normal Emacs functions.")
1239 (with-current-buffer (tramp-get-connection-buffer v) 1239 (with-current-buffer (tramp-get-connection-buffer v)
1240 (goto-char (point-min)) 1240 (goto-char (point-min))
1241 (tramp-set-file-property v localname "file-symlink-marker" (read (current-buffer))) 1241 (tramp-set-file-property v localname "file-symlink-marker" (read (current-buffer)))
1242 ;; We cannote call `read', the file name isn't quoted. 1242 ;; We cannot call `read', the file name isn't quoted.
1243 (forward-line) 1243 (forward-line)
1244 (buffer-substring (point) (line-end-position)))) 1244 (buffer-substring (point) (line-end-position))))
1245 1245
diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el
index 836db83c2f3..e913d37371a 100644
--- a/lisp/progmodes/hideif.el
+++ b/lisp/progmodes/hideif.el
@@ -1801,7 +1801,7 @@ and `+='...)."
1801 actual-parms nil))) 1801 actual-parms nil)))
1802 1802
1803 (t 1803 (t
1804 (error "Interal error: impossible case.")))) 1804 (error "Internal error: impossible case"))))
1805 1805
1806 (pop actual-parms) 1806 (pop actual-parms)
1807 while actual-parms) ; end cl-loop 1807 while actual-parms) ; end cl-loop
diff --git a/lisp/transient.el b/lisp/transient.el
index ebf6f23f6cd..93c68f8162b 100644
--- a/lisp/transient.el
+++ b/lisp/transient.el
@@ -3566,7 +3566,7 @@ have a history of their own.")
3566 (propertize "\n" 'face face 'line-height t)))) 3566 (propertize "\n" 'face face 'line-height t))))
3567 3567
3568(defmacro transient-with-shadowed-buffer (&rest body) 3568(defmacro transient-with-shadowed-buffer (&rest body)
3569 "While in the transient buffer, temporarly make the shadowed buffer current." 3569 "While in the transient buffer, temporarily make the shadowed buffer current."
3570 (declare (indent 0) (debug t)) 3570 (declare (indent 0) (debug t))
3571 `(with-current-buffer (or transient--shadowed-buffer (current-buffer)) 3571 `(with-current-buffer (or transient--shadowed-buffer (current-buffer))
3572 ,@body)) 3572 ,@body))
diff --git a/src/sfnt.c b/src/sfnt.c
index 238e7f48420..44906b12ce9 100644
--- a/src/sfnt.c
+++ b/src/sfnt.c
@@ -2783,7 +2783,7 @@ sfnt_decompose_compound_glyph (struct sfnt_glyph *glyph,
2783 else 2783 else
2784 { 2784 {
2785 /* The offset is determined by matching a point location in 2785 /* The offset is determined by matching a point location in
2786 a preceeding component with a point location in the 2786 a preceding component with a point location in the
2787 current component. The index of the point in the 2787 current component. The index of the point in the
2788 previous component can be determined by adding 2788 previous component can be determined by adding
2789 component->argument1.a or component->argument1.c to 2789 component->argument1.a or component->argument1.c to
@@ -11880,7 +11880,7 @@ sfnt_interpret_compound_glyph_1 (struct sfnt_glyph *glyph,
11880 else 11880 else
11881 { 11881 {
11882 /* The offset is determined by matching a point location in 11882 /* The offset is determined by matching a point location in
11883 a preceeding component with a point location in the 11883 a preceding component with a point location in the
11884 current component. The index of the point in the 11884 current component. The index of the point in the
11885 previous component is established by adding 11885 previous component is established by adding
11886 component->argument1.a or component->argument1.c to 11886 component->argument1.a or component->argument1.c to
diff --git a/src/treesit.c b/src/treesit.c
index 912f4ed47cc..b8de95ec691 100644
--- a/src/treesit.c
+++ b/src/treesit.c
@@ -3286,7 +3286,7 @@ treesit_traverse_get_predicate (Lisp_Object thing, Lisp_Object language)
3286 there's an error, set SIGNAL_DATA to (ERR . DATA), where ERR is an 3286 there's an error, set SIGNAL_DATA to (ERR . DATA), where ERR is an
3287 error symbol, and DATA is something signal accepts, and return 3287 error symbol, and DATA is something signal accepts, and return
3288 false, otherwise return true. This function also check for 3288 false, otherwise return true. This function also check for
3289 recusion levels: we place a arbitrary 100 level limit on recursive 3289 recursion levels: we place a arbitrary 100 level limit on recursive
3290 predicates. RECURSION_LEVEL is the current recursion level (that 3290 predicates. RECURSION_LEVEL is the current recursion level (that
3291 starts at 0), if it goes over 99, return false and set SIGNAL_DATA. 3291 starts at 0), if it goes over 99, return false and set SIGNAL_DATA.
3292 LANGUAGE is a LANGUAGE symbol. */ 3292 LANGUAGE is a LANGUAGE symbol. */