]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge remote-tracking branch 'savannah/master' into HEAD
authorAndrea Corallo <akrl@sdf.org>
Sat, 17 Oct 2020 06:00:34 +0000 (08:00 +0200)
committerAndrea Corallo <akrl@sdf.org>
Sat, 17 Oct 2020 06:00:34 +0000 (08:00 +0200)
1  2 
lisp/emacs-lisp/package.el
lisp/gnus/gnus.el
lisp/subr.el
test/lisp/help-fns-tests.el

Simple merge
Simple merge
diff --cc lisp/subr.el
Simple merge
index 2f6abfb56dd1936beecad6df4328079fb0c46841,bdd488de3f2ace20746ce241ad366e254199ecbb..d9344c355fee142c33441381f793f59b8c287bc5
@@@ -61,16 -61,12 +61,16 @@@ Return first line of the output of (des
      (should (string-match regexp result))))
  
  (ert-deftest help-fns-test-lisp-defun ()
 -  (let ((regexp "a compiled Lisp function in .+subr\\.el")
 +  (let ((regexp (if (boundp 'comp-ctxt)
-                     "a native compiled Lisp function in .subr\\.el"
-                   "a compiled Lisp function in .subr\\.el"))
++                    "a native compiled Lisp function in .+subr\\.el"
++                  "a compiled Lisp function in .+subr\\.el"))
          (result (help-fns-tests--describe-function 'last)))
      (should (string-match regexp result))))
  
  (ert-deftest help-fns-test-lisp-defsubst ()
 -  (let ((regexp "a compiled Lisp function in .+subr\\.el")
 +  (let ((regexp (if (boundp 'comp-ctxt)
-                     "a native compiled Lisp function in .subr\\.el"
-                   "a compiled Lisp function in .subr\\.el"))
++                    "a native compiled Lisp function in .+subr\\.el"
++                  "a compiled Lisp function in .+subr\\.el"))
          (result (help-fns-tests--describe-function 'posn-window)))
      (should (string-match regexp result))))