diff options
author | Eli Zaretskii <eliz@gnu.org> | 2017-05-06 23:23:36 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2017-05-06 23:23:36 +0300 |
commit | b104d764216026d77680a79993a051725e5ab94c (patch) | |
tree | 3639760d58a7bf514b5959789bdf54f84a9da5d1 /test | |
parent | 89b5a8283375f83b8f0e174a3a8760158b99be6e (diff) | |
download | emacs-b104d764216026d77680a79993a051725e5ab94c.tar.gz |
; Fix last change
* test/src/emacs-module-tests.el (module-function-object): Fix thinko
in last change.
Diffstat (limited to 'test')
-rw-r--r-- | test/src/emacs-module-tests.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el index 8cef1cfa7d0..eb7c82b2f60 100644 --- a/test/src/emacs-module-tests.el +++ b/test/src/emacs-module-tests.el @@ -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))))))) |