]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix last change
authorEli Zaretskii <eliz@gnu.org>
Sat, 6 May 2017 20:23:36 +0000 (23:23 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 6 May 2017 20:23:36 +0000 (23:23 +0300)
* test/src/emacs-module-tests.el (module-function-object): Fix thinko
in last change.

test/src/emacs-module-tests.el

index 8cef1cfa7d0659d49a845fd7999e727213fb9fbc..eb7c82b2f60255c6cafc6c04a2d43f4ef0521791 100644 (file)
@@ -81,9 +81,9 @@ changes."
                  (rx (or "#<module function Fmod_test_sum from "
                          ;; MS-Windows doesn't allow us to get the
                          ;; function name, only the address.
-                         "#<module function at 0x"
-                         (one-or-more hex-digit)
-                         "from ")
+                         (and "#<module function at 0x"
+                              (one-or-more hex-digit)
+                              " from "))
                      (* nonl) "mod-test" (* nonl) ">")
                  (prin1-to-string obj)))))))