diff options
| author | Eli Zaretskii | 2017-05-06 23:23:36 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2017-05-06 23:23:36 +0300 |
| commit | b104d764216026d77680a79993a051725e5ab94c (patch) | |
| tree | 3639760d58a7bf514b5959789bdf54f84a9da5d1 /test/src | |
| parent | 89b5a8283375f83b8f0e174a3a8760158b99be6e (diff) | |
| download | emacs-b104d764216026d77680a79993a051725e5ab94c.tar.gz emacs-b104d764216026d77680a79993a051725e5ab94c.zip | |
; Fix last change
* test/src/emacs-module-tests.el (module-function-object): Fix thinko
in last change.
Diffstat (limited to 'test/src')
| -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." | |||
| 81 | (rx (or "#<module function Fmod_test_sum from " | 81 | (rx (or "#<module function Fmod_test_sum from " |
| 82 | ;; MS-Windows doesn't allow us to get the | 82 | ;; MS-Windows doesn't allow us to get the |
| 83 | ;; function name, only the address. | 83 | ;; function name, only the address. |
| 84 | "#<module function at 0x" | 84 | (and "#<module function at 0x" |
| 85 | (one-or-more hex-digit) | 85 | (one-or-more hex-digit) |
| 86 | "from ") | 86 | " from ")) |
| 87 | (* nonl) "mod-test" (* nonl) ">") | 87 | (* nonl) "mod-test" (* nonl) ">") |
| 88 | (prin1-to-string obj))))))) | 88 | (prin1-to-string obj))))))) |
| 89 | 89 | ||