]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typos in symbols
authorStefan Kangas <stefankangas@gmail.com>
Sat, 29 Jun 2024 15:29:38 +0000 (17:29 +0200)
committerEshel Yaron <me@eshelyaron.com>
Mon, 1 Jul 2024 07:48:29 +0000 (09:48 +0200)
(cherry picked from commit 45a20d781a9b00212609bf0e338bd6b1cc9ea68a)

13 files changed:
lisp/emacs-lisp/comp.el
lisp/erc/erc-common.el
lisp/frameset.el
lisp/org/ob-core.el
lisp/org/ob-lilypond.el
lisp/org/org-refile.el
lisp/progmodes/cc-engine.el
lisp/progmodes/eglot.el
lisp/progmodes/gdb-mi.el
lisp/which-key.el
test/lisp/which-key-tests.el
test/src/comp-resources/comp-test-funcs.el
test/src/comp-tests.el

index 032e49840a85763682782c9b740f9d123d6d30a5..6c56fd78859b35686aa8407556a8c2cbdfb36a6e 100644 (file)
@@ -1055,7 +1055,7 @@ If DST-N is specified, use it; otherwise assume it to be the current slot."
   "Set constant VAL to current slot."
   (comp--add-const-to-relocs val)
   ;; Leave relocation index nil on purpose, will be fixed-up in final
-  ;; by `comp-finalize-relocs'.
+  ;; by `comp--finalize-relocs'.
   (comp--emit `(setimm ,(comp--slot) ,val)))
 
 (defun comp--make-curr-block (block-name entry-sp &optional addr)
index 3577e697515019bef8d73ebcb693d8900a3f5b43..057e79815158efefad75fcb602fffcf7be5ebb9f 100644 (file)
@@ -363,7 +363,7 @@ instead of a `set' state, which precludes any actual saving."
 Non-nil inside an ERC module's activation (or deactivation)
 command, such as `erc-spelling-enable', when it's been called
 indirectly via the module's minor-mode toggle, i.e.,
-`erc-spelling-mode'.  Nil otherwise.  Its value is either the
+`erc-spelling-mode'.  nil otherwise.  Its value is either the
 symbol `toggle' or an integer produced by `prefix-numeric-value'.
 See Info node `(elisp) Defining Minor Modes' for more.")
 
index 43411f09402bc8af94ab7b4f9db0fcf8e2ba45a3..c5c67dd785a87f8942a318d8ee0719ddd28b1ced 100644 (file)
@@ -200,7 +200,7 @@ Properties can be set with
 ;; - can be ignored by window managers (most positional args, like `height',
 ;;   `width', `left' and `top', and others, like `auto-raise', `auto-lower')
 ;; - can be set externally in X resources or Window registry (again, most
-;;   positional parameters, and also `toolbar-lines', `menu-bar-lines' etc.)
+;;   positional parameters, and also `tool-bar-lines', `menu-bar-lines' etc.)
 ;, - can contain references to live objects (`buffer-list', `minibuffer') or
 ;;   code (`buffer-predicate')
 ;; - are set automatically, and cannot be changed (`window-id', `parent-id'),
index 727ace84463e68e18a69edd6b84e00003f12bd5e..bd96556846fd82db88f1fc5f3e932d66caa5e0b4 100644 (file)
@@ -1778,7 +1778,7 @@ shown below.
 
 #+PROPERTY: var foo=1, bar=2
 
-HEADER-ARGUMENTS is alist of all the arguments."
+HEADER-ARGUMENTS is an alist of all the arguments."
   (let (results)
     (mapc (lambda (pair)
            (if (eq (car pair) :var)
index a8d85ce7c85875a6febc7024be7ada795ecc72b1..ef747d9bb2c63df6fca6a34a91551db855dc67d6 100644 (file)
@@ -160,7 +160,7 @@ Otherwise, execute block according to header settings."
     (org-babel-lilypond-process-basic body params)))
 
 (defun org-babel-lilypond-tangle ()
-  "Tangle lilypond blocks, then `org-babel-liypond-execute-tangled-ly'."
+  "Tangle lilypond blocks, then `org-babel-lilypond-execute-tangled-ly'."
   (interactive)
   (if (org-babel-tangle nil "yes" "lilypond")
       (org-babel-lilypond-execute-tangled-ly) nil))
index c8e64903c33d2ef589b6ed93fef0e758e12a1193..391e24028591f0c8d57c42928627d400aa315239 100644 (file)
@@ -557,7 +557,7 @@ prefix argument (`C-u C-u C-u C-c C-w')."
             (let ((origin (point-marker)))
               ;; Handle special case when we refile to exactly same
               ;; location with tree promotion/demotion.  Point marker
-              ;; saved by `org-width-wide-buffer' (`save-excursion')
+              ;; saved by `org-with-wide-buffer' (`save-excursion')
               ;; will then remain before the inserted subtree in
               ;; unexpected location.
               (set-marker-insertion-type origin t)
index 0b50844732fe34ad373226f928eb35d31d9a170e..7dc850cb839f939a80cf3e4fdca0fa340fb62bc5 100644 (file)
@@ -13864,7 +13864,7 @@ comment at the start of cc-engine.el for more info."
   ;;
   ;; This is true when point is at the last non syntactic WS position on the
   ;; line, there is a macro call last on the line, and this particular macro's
-  ;; name is defined by the regexp `c-vs-macro-regexp' as not needing a
+  ;; name is defined by the regexp `c-macro-with-semi-re' as not needing a
   ;; semicolon.
   (save-excursion
     (save-restriction
index c204b714140aab35bdde54716d1521f5ace0f976..599371d951c2a917f514ffa438973a3d8ddfd525 100644 (file)
@@ -2594,7 +2594,7 @@ THINGS are either registrations or unregisterations (sic)."
 
 (defun eglot--TextDocumentIdentifier ()
   "Compute TextDocumentIdentifier object for current buffer.
-Sets `eglot--TextDocumentIdentifier-uri' (which see) as a side effect."
+Sets `eglot--TextDocumentIdentifier-cache' (which see) as a side effect."
   (unless eglot--TextDocumentIdentifier-cache
     (let ((truename (file-truename (or buffer-file-name
                                        (ignore-errors
index c8b086cfad2c3893ab921a003dbc33c527037880..0ce5e1df794b87df346bbee53914a94d17b65700 100644 (file)
@@ -5122,7 +5122,7 @@ commands) or source buffers (that display program source code)."
 
 (defun gdb--buffer-type (buffer)
   "Return the type of BUFFER if it is a function buffer.
-Buffer type is like `gdb-registers-type', `gdb-stack-buffer'.
+Buffer type is like `gdb-registers-buffer', `gdb-stack-buffer'.
 These symbols are used by `gdb-get-buffer-create'.
 
 Return nil if BUFFER is not a GDB function buffer."
index 8ad2ba2c365dea4a3f63b5e0b66fc66e8296b5af..677a84b328db1f2d7cf11d8707148b7ac3e88adb 100644 (file)
@@ -1614,7 +1614,7 @@ Within these categories order using `which-key-key-order'."
     (when found `(replaced . ,key-binding))))
 
 (defun which-key--maybe-replace (key-binding)
-  "Use `which-key--replacement-alist' to maybe replace KEY-BINDING.
+  "Use `which-key-replacement-alist' to maybe replace KEY-BINDING.
 KEY-BINDING is a cons cell of the form \(KEY . BINDING\) each of
 which are strings.  KEY is of the form produced by `key-binding'."
   (let* ((replacer (if which-key-allow-multiple-replacements
index 1f2b1965ec31d519f5a2348af07f2cdc332a327f..3b42a7bd504aaba403093c60dcc510ae0fb49dc9 100644 (file)
@@ -53,8 +53,7 @@
              '(("C-a" . "which-key-test--named-map"))))))
 
 (ert-deftest which-key-test--prefix-declaration ()
-  "Test `which-key-declare-prefixes' and
-`which-key-declare-prefixes-for-mode'. See Bug #109."
+  ;; See Bug #109.
   (let* ((major-mode 'test-mode)
          which-key-replacement-alist)
     (which-key-add-key-based-replacements
index 54f339f6373d744546255e77cbf00b1a28e76420..084fcd8c9db03fd6ee4f2ee294ebdda558a7f51c 100644 (file)
        2))
 
 (defun comp-test-copy-insn-f (insn)
-  ;; From `comp-copy-insn'.
+  ;; From `comp--copy-insn'.
   (if (consp insn)
       (let (result)
        (while (consp insn)
index dffb7097a3e26c81d3b141e5c45680949d49e06d..6744f14435b040544780fcc416d6d4a7fc46bba1 100644 (file)
@@ -1320,7 +1320,7 @@ Return a list of results."
            (5 (message "five")))
          x)
        't
-       ;; FIXME improve `comp-cond-cstrs-target-mvar' to cross block
+       ;; FIXME improve `comp--cond-cstrs-target-mvar' to cross block
        ;; boundary if necessary as this should return:
        ;; (or (integer 1 1) (integer 5 5))
        )