]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge from origin/emacs-29
authorEli Zaretskii <eliz@gnu.org>
Mon, 31 Jul 2023 15:11:21 +0000 (11:11 -0400)
committerEli Zaretskii <eliz@gnu.org>
Mon, 31 Jul 2023 15:11:21 +0000 (11:11 -0400)
ee20b50dfed ; * lisp/progmodes/typescript-ts-mode.el (treesit-query-c...
2215298d90b Update JSX support due to upstream changes (bug#64647)
235561a2ccc Update TSX support due to upstream changes (bug#64647)
12ab82d3b35 ; Fix customization form of 'bookmark-watch-bookmark-file'
d149a4dc428 ; Improve documentation of automatic addition to minibuff...
42a99627948 ; Improve documentation of 'last-command-event'
101455cb853 ; * lisp/subr.el (ignore, always): Doc fixes.  (Bug#64776)

1  2 
doc/lispref/commands.texi
doc/lispref/minibuf.texi
doc/lispref/text.texi
lisp/progmodes/js.el
lisp/progmodes/typescript-ts-mode.el
lisp/subr.el
src/cmds.c

Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc lisp/subr.el
index 2e2caf9fe277a7a52323c9ea5c457076898c45f7,872c701dbe79ca14071d3f8fcb5a4ba86b187541..9949bf8d72987b1639fa4455bccedfb90040ea79
@@@ -423,20 -399,17 +423,20 @@@ PREFIX is a string, and defaults to \"g
      (make-symbol (format "%s%d" (or prefix "g") num))))
  
  (defun ignore (&rest _arguments)
-   "Do nothing and return nil.
- This function accepts any number of ARGUMENTS, but ignores them.
+   "Ignore ARGUMENTS, do nothing, and return nil.
+ This function accepts any number of arguments in ARGUMENTS.
  Also see `always'."
 -  (declare (completion ignore))
 +  ;; Not declared `side-effect-free' because we don't want calls to it
 +  ;; elided; see `byte-compile-ignore'.
 +  (declare (pure t) (completion ignore))
    (interactive)
    nil)
  
  (defun always (&rest _arguments)
-   "Do nothing and return t.
- This function accepts any number of ARGUMENTS, but ignores them.
+   "Ignore ARGUMENTS, do nothing, and return t.
+ This function accepts any number of arguments in ARGUMENTS.
  Also see `ignore'."
 +  (declare (pure t) (side-effect-free error-free))
    t)
  
  ;; Signal a compile-error if the first arg is missing.
diff --cc src/cmds.c
Simple merge