aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2024-01-14 14:56:06 +0100
committerStefan Kangas2024-01-14 15:16:54 +0100
commit725a3f32f8ba78ac5fffcd03be5b82cbc2c1b275 (patch)
tree972ca388712567c81d9eb6dc90c6d6566d8bfa76
parent6653ee66ca5ebd42322613a09d4c0d2e35af924b (diff)
downloademacs-725a3f32f8ba78ac5fffcd03be5b82cbc2c1b275.tar.gz
emacs-725a3f32f8ba78ac5fffcd03be5b82cbc2c1b275.zip
; Fix typos in symbol names
-rw-r--r--admin/cus-test.el2
-rw-r--r--lisp/abbrev.el2
-rw-r--r--lisp/calendar/todo-mode.el2
-rw-r--r--lisp/erc/erc.el2
-rw-r--r--lisp/jsonrpc.el2
-rw-r--r--lisp/leim/quail/cyrillic.el4
-rw-r--r--lisp/org/org-element.el2
-rw-r--r--lisp/org/org-fold-core.el2
-rw-r--r--lisp/org/org-macs.el2
-rw-r--r--lisp/org/ox-latex.el2
-rw-r--r--lisp/progmodes/eglot.el2
-rw-r--r--lisp/term.el2
-rw-r--r--lisp/term/pc-win.el2
-rw-r--r--lisp/treesit.el2
-rw-r--r--lisp/window.el2
15 files changed, 16 insertions, 16 deletions
diff --git a/admin/cus-test.el b/admin/cus-test.el
index 62fec77c16f..64c742ea855 100644
--- a/admin/cus-test.el
+++ b/admin/cus-test.el
@@ -146,7 +146,7 @@ Names should be as they appear in loaddefs.el.")
146 146
147(defvar cus-test-errors nil 147(defvar cus-test-errors nil
148 "List of problematic variables found by `cus-test-apropos'. 148 "List of problematic variables found by `cus-test-apropos'.
149Each element is (VARIABLE . PROBLEM); see `cus-test--format-problem'.") 149Each element is (VARIABLE . PROBLEM); see `cus-test--format-errors'.")
150 150
151(defvar cus-test-tested-variables nil 151(defvar cus-test-tested-variables nil
152 "List of options tested by last call of `cus-test-apropos'.") 152 "List of options tested by last call of `cus-test-apropos'.")
diff --git a/lisp/abbrev.el b/lisp/abbrev.el
index c4eac8c5c39..9afa617908e 100644
--- a/lisp/abbrev.el
+++ b/lisp/abbrev.el
@@ -1275,7 +1275,7 @@ which see."
1275 (setq font-lock-multiline nil)) 1275 (setq font-lock-multiline nil))
1276 1276
1277(defun abbrev--possibly-save (query &optional arg) 1277(defun abbrev--possibly-save (query &optional arg)
1278 "Hook function for use by `save-some-buffer-functions'. 1278 "Hook function for use by `save-some-buffers-functions'.
1279 1279
1280Maybe save abbrevs, and record whether we either saved them or asked to." 1280Maybe save abbrevs, and record whether we either saved them or asked to."
1281 ;; Query mode. 1281 ;; Query mode.
diff --git a/lisp/calendar/todo-mode.el b/lisp/calendar/todo-mode.el
index 20e056c2521..9ef473b1b43 100644
--- a/lisp/calendar/todo-mode.el
+++ b/lisp/calendar/todo-mode.el
@@ -1516,7 +1516,7 @@ the archive of the file moved to, creating it if it does not exist."
1516 (prin1 todo-categories (current-buffer))) 1516 (prin1 todo-categories (current-buffer)))
1517 ;; If archive was just created, save it to avoid "File 1517 ;; If archive was just created, save it to avoid "File
1518 ;; <xyz> no longer exists!" message on invoking 1518 ;; <xyz> no longer exists!" message on invoking
1519 ;; `todo-view-archived-items'. 1519 ;; `todo-find-archive'.
1520 (unless (file-exists-p (buffer-file-name)) 1520 (unless (file-exists-p (buffer-file-name))
1521 (save-buffer)) 1521 (save-buffer))
1522 (todo-category-number (or new cat)) 1522 (todo-category-number (or new cat))
diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el
index 4171ba3cb1d..88e41e96a82 100644
--- a/lisp/erc/erc.el
+++ b/lisp/erc/erc.el
@@ -2192,7 +2192,7 @@ parameters SERVER and NICK."
2192;; (bug#60428). 2192;; (bug#60428).
2193(defun erc--warn-unencrypted () 2193(defun erc--warn-unencrypted ()
2194 ;; Remove unconditionally to avoid wrong context due to races from 2194 ;; Remove unconditionally to avoid wrong context due to races from
2195 ;; simultaneous dialing or aborting (e.g., via `keybaord-quit'). 2195 ;; simultaneous dialing or aborting (e.g., via `keyboard-quit').
2196 (remove-hook 'erc--server-post-connect-hook #'erc--warn-unencrypted) 2196 (remove-hook 'erc--server-post-connect-hook #'erc--warn-unencrypted)
2197 (when (and (process-contact erc-server-process :nowait) 2197 (when (and (process-contact erc-server-process :nowait)
2198 (equal erc-session-server erc-default-server) 2198 (equal erc-session-server erc-default-server)
diff --git a/lisp/jsonrpc.el b/lisp/jsonrpc.el
index 2ccb528fee9..f2060d3faa1 100644
--- a/lisp/jsonrpc.el
+++ b/lisp/jsonrpc.el
@@ -555,7 +555,7 @@ With optional CLEANUP, kill any associated buffers."
555 "Called when new data STRING has arrived for PROC." 555 "Called when new data STRING has arrived for PROC."
556 (when jsonrpc--in-process-filter 556 (when jsonrpc--in-process-filter
557 ;; Problematic recursive process filters may happen if 557 ;; Problematic recursive process filters may happen if
558 ;; `jsonrpc--connection-receive', called by us, eventually calls 558 ;; `jsonrpc-connection-receive', called by us, eventually calls
559 ;; client code which calls `process-send-string' (which see) to, 559 ;; client code which calls `process-send-string' (which see) to,
560 ;; say send a follow-up message. If that happens to writes enough 560 ;; say send a follow-up message. If that happens to writes enough
561 ;; bytes for pending output to be received, we will lose JSONRPC 561 ;; bytes for pending output to be received, we will lose JSONRPC
diff --git a/lisp/leim/quail/cyrillic.el b/lisp/leim/quail/cyrillic.el
index 577898f82bd..60c88221a65 100644
--- a/lisp/leim/quail/cyrillic.el
+++ b/lisp/leim/quail/cyrillic.el
@@ -1101,9 +1101,9 @@ as follows.
1101;; Ognyan Kulev <ogi@fmi.uni-sofia.bg> wrote: 1101;; Ognyan Kulev <ogi@fmi.uni-sofia.bg> wrote:
1102 1102
1103;; I would suggest future `cyrillic-translit' to be with the 1103;; I would suggest future `cyrillic-translit' to be with the
1104;; modification of `cyrillic-translit-bulgarian' applied and the 1104;; modification of `cyrillic-translit-bulgarian' (now deleted) applied and the
1105;; latter to disappear. It could be used by people who write 1105;; latter to disappear. It could be used by people who write
1106;; bulgarian e-mails with latin letters for kick start (phonetic input 1106;; Bulgarian e-mails with latin letters for kick start (phonetic input
1107;; method is not so obvious as translit input method but each letter 1107;; method is not so obvious as translit input method but each letter
1108;; is one keypress and a *lot* of people know it). 1108;; is one keypress and a *lot* of people know it).
1109 1109
diff --git a/lisp/org/org-element.el b/lisp/org/org-element.el
index ff587bba38c..796191dd386 100644
--- a/lisp/org/org-element.el
+++ b/lisp/org/org-element.el
@@ -6556,7 +6556,7 @@ the expected result."
6556 (error "org-element: Parsing aborted by user. Cache has been cleared. 6556 (error "org-element: Parsing aborted by user. Cache has been cleared.
6557If you observe Emacs hangs frequently, please report this to Org mode mailing list (M-x org-submit-bug-report).")) 6557If you observe Emacs hangs frequently, please report this to Org mode mailing list (M-x org-submit-bug-report)."))
6558 (message (substitute-command-keys 6558 (message (substitute-command-keys
6559 "`org-element--parse-buffer': Suppressed `\\[keyboard-quit]'. Press `\\[keyboard-quit]' %d more times to force interruption.") 6559 "`org-element--parse-to': Suppressed `\\[keyboard-quit]'. Press `\\[keyboard-quit]' %d more times to force interruption.")
6560 (- org-element--cache-interrupt-C-g-max-count 6560 (- org-element--cache-interrupt-C-g-max-count
6561 org-element--cache-interrupt-C-g-count))) 6561 org-element--cache-interrupt-C-g-count)))
6562 (unless element 6562 (unless element
diff --git a/lisp/org/org-fold-core.el b/lisp/org/org-fold-core.el
index 73b3c9bbf8c..be90ca398a1 100644
--- a/lisp/org/org-fold-core.el
+++ b/lisp/org/org-fold-core.el
@@ -433,7 +433,7 @@ Return nil when there is no matching folding spec."
433 (org-fold-core-get-folding-spec-from-alias spec-or-alias)) 433 (org-fold-core-get-folding-spec-from-alias spec-or-alias))
434 434
435(defsubst org-fold-core--check-spec (spec-or-alias) 435(defsubst org-fold-core--check-spec (spec-or-alias)
436 "Throw an error if SPEC-OR-ALIAS is not in `org-fold-core--spec-priority-list'." 436 "Throw an error if SPEC-OR-ALIAS is not in `org-fold-core-folding-spec-list'."
437 (unless (org-fold-core-folding-spec-p spec-or-alias) 437 (unless (org-fold-core-folding-spec-p spec-or-alias)
438 (error "%s is not a valid folding spec" spec-or-alias))) 438 (error "%s is not a valid folding spec" spec-or-alias)))
439 439
diff --git a/lisp/org/org-macs.el b/lisp/org/org-macs.el
index 55541834784..b891284a8bb 100644
--- a/lisp/org/org-macs.el
+++ b/lisp/org/org-macs.el
@@ -1072,7 +1072,7 @@ Return width in pixels when PIXELS is non-nil."
1072 ;; FIXME: Fallback to old limited version, because 1072 ;; FIXME: Fallback to old limited version, because
1073 ;; `window-pixel-width' is buggy in older Emacs. 1073 ;; `window-pixel-width' is buggy in older Emacs.
1074 (org--string-width-1 string) 1074 (org--string-width-1 string)
1075 ;; Wrap/line prefix will make `window-text-pizel-size' return too 1075 ;; Wrap/line prefix will make `window-text-pixel-size' return too
1076 ;; large value including the prefix. 1076 ;; large value including the prefix.
1077 (remove-text-properties 0 (length string) 1077 (remove-text-properties 0 (length string)
1078 '(wrap-prefix t line-prefix t) 1078 '(wrap-prefix t line-prefix t)
diff --git a/lisp/org/ox-latex.el b/lisp/org/ox-latex.el
index f44b50c99ea..c83728a8f09 100644
--- a/lisp/org/ox-latex.el
+++ b/lisp/org/ox-latex.el
@@ -3667,7 +3667,7 @@ CONTENTS is the contents of the object."
3667;; takes care of tables with a "verbatim" mode. Otherwise, it 3667;; takes care of tables with a "verbatim" mode. Otherwise, it
3668;; delegates the job to either `org-latex--table.el-table', 3668;; delegates the job to either `org-latex--table.el-table',
3669;; `org-latex--org-table', `org-latex--math-table' or 3669;; `org-latex--org-table', `org-latex--math-table' or
3670;; `org-latex--org-tabbing' functions, 3670;; `org-latex--org-align-string-tabbing' functions,
3671;; depending of the type of the table and the mode requested. 3671;; depending of the type of the table and the mode requested.
3672;; 3672;;
3673;; `org-latex--align-string' is a subroutine used to build alignment 3673;; `org-latex--align-string' is a subroutine used to build alignment
diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el
index 64fd548e824..1e90e26a537 100644
--- a/lisp/progmodes/eglot.el
+++ b/lisp/progmodes/eglot.el
@@ -1592,7 +1592,7 @@ If optional MARKER, return a marker instead"
1592 (let ((vec (copy-sequence url-path-allowed-chars))) 1592 (let ((vec (copy-sequence url-path-allowed-chars)))
1593 (aset vec ?: nil) ;; see github#639 1593 (aset vec ?: nil) ;; see github#639
1594 vec) 1594 vec)
1595 "Like `url-path-allows-chars' but more restrictive.") 1595 "Like `url-path-allowed-chars' but more restrictive.")
1596 1596
1597(defun eglot--path-to-uri (path) 1597(defun eglot--path-to-uri (path)
1598 "URIfy PATH." 1598 "URIfy PATH."
diff --git a/lisp/term.el b/lisp/term.el
index e3dedf247d1..647938c3b86 100644
--- a/lisp/term.el
+++ b/lisp/term.el
@@ -1109,7 +1109,7 @@ variable `term-input-autoexpand', and addition is controlled by the
1109variable `term-input-ignoredups'. 1109variable `term-input-ignoredups'.
1110 1110
1111Input to, and output from, the subprocess can cause the window to scroll to 1111Input to, and output from, the subprocess can cause the window to scroll to
1112the end of the buffer. See variables `term-scroll-to-bottom-on-input', 1112the end of the buffer. See variables `term-scroll-snap-to-bottom',
1113and `term-scroll-to-bottom-on-output'. 1113and `term-scroll-to-bottom-on-output'.
1114 1114
1115If you accidentally suspend your process, use \\[term-continue-subjob] 1115If you accidentally suspend your process, use \\[term-continue-subjob]
diff --git a/lisp/term/pc-win.el b/lisp/term/pc-win.el
index 02ad6b85c37..92d65c75816 100644
--- a/lisp/term/pc-win.el
+++ b/lisp/term/pc-win.el
@@ -47,7 +47,7 @@
47 47
48;; This was copied from etc/rgb.txt, except that some values were changed 48;; This was copied from etc/rgb.txt, except that some values were changed
49;; a bit to make them consistent with DOS console colors, and the RGB 49;; a bit to make them consistent with DOS console colors, and the RGB
50;; values were scaled up to 16 bits, as `tty-define-color' requires. 50;; values were scaled up to 16 bits, as `tty-color-define' requires.
51;;; 51;;;
52;; The mapping between the 16 standard EGA/VGA colors and X color names 52;; The mapping between the 16 standard EGA/VGA colors and X color names
53;; was done by running a Unix version of Emacs inside an X client and a 53;; was done by running a Unix version of Emacs inside an X client and a
diff --git a/lisp/treesit.el b/lisp/treesit.el
index c63bf510a24..2676ed932dc 100644
--- a/lisp/treesit.el
+++ b/lisp/treesit.el
@@ -1422,7 +1422,7 @@ no-node
1422 1422
1423comment-end 1423comment-end
1424 1424
1425 Matches if text after point matches `treesit-comment-end'. 1425 Matches if text after point matches `comment-end-skip'.
1426 1426
1427catch-all 1427catch-all
1428 1428
diff --git a/lisp/window.el b/lisp/window.el
index c7cd32e6200..13fe1feba10 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -8528,7 +8528,7 @@ buffer. ALIST is a buffer display action alist as compiled by
8528 canonical frame lines. If it is the constant `full-height', 8528 canonical frame lines. If it is the constant `full-height',
8529 prefer a full-height window. 8529 prefer a full-height window.
8530 8530
8531If ALIST contains a non-nil `inhibit-same--window' entry, do not 8531If ALIST contains a non-nil `inhibit-same-window' entry, do not
8532return the selected window." 8532return the selected window."
8533 (let ((windows 8533 (let ((windows
8534 (window-list-1 nil 'nomini (cdr (assq 'lru-frames alist)))) 8534 (window-list-1 nil 'nomini (cdr (assq 'lru-frames alist))))