mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-26 07:00:35 -08:00
Merge from origin/emacs-27
35661ef943(origin/emacs-27) Fix typo in "(elisp) Type Keywords"1af0e95fecGnus nnir-summary-line-format has no effectdd366b5d3bImprove documentation of 'window-text-pixel-size'fbd49f969e* src/xdisp.c (Fwindow_text_pixel_size): Doc fix. (Bug#41...d8593fd19fMinor improvements to EDE and EIEIO manuals3916e63f9eHave Fido mode also imitate Ido mode in ignore-case optionscc35b197c7Update package-menu-quick-helpbf09106256Improve documentation of 'sort-subr'73749efa13Update Ukrainian transliteration30a7ee505aFix Arabic shaping when eww/shr fill the text to be rendered7d323f07c0Silence some byte-compiler warnings in testscf473e742f* test/lisp/battery-tests.el: New file.b07e3b1d97Improve format-spec documentation (bug#41571) # Conflicts: # test/lisp/emacs-lisp/package-tests.el
This commit is contained in:
commit
fa6d56529f
26 changed files with 414 additions and 169 deletions
|
|
@ -20,6 +20,7 @@
|
|||
;;; Code:
|
||||
|
||||
(require 'ert)
|
||||
(require 'seq)
|
||||
(eval-when-compile (require 'cl-lib))
|
||||
|
||||
(ert-deftest overlay-modification-hooks-message-other-buf ()
|
||||
|
|
|
|||
|
|
@ -174,7 +174,7 @@ most-positive-fixnum, which is just less than a power of 2.")
|
|||
sum 1))
|
||||
|
||||
(defun test-bool-vector-bv-from-hex-string (desc)
|
||||
(let (bv nchars nibbles)
|
||||
(let (bv nibbles)
|
||||
(dolist (c (string-to-list desc))
|
||||
(push (string-to-number
|
||||
(char-to-string c)
|
||||
|
|
@ -244,9 +244,9 @@ comparing the subr with a much slower lisp implementation."
|
|||
|
||||
(defun test-bool-vector-apply-mock-op (mock a b c)
|
||||
"Compute (slowly) the correct result of a bool-vector set operation."
|
||||
(let (changed nv)
|
||||
(let (changed)
|
||||
(cl-assert (eql (length b) (length c)))
|
||||
(if a (setf nv a)
|
||||
(unless a
|
||||
(setf a (make-bool-vector (length b) nil))
|
||||
(setf changed t))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue