emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master b104d76: ; Fix last change


From: Eli Zaretskii
Subject: [Emacs-diffs] master b104d76: ; Fix last change
Date: Sat, 6 May 2017 16:25:32 -0400 (EDT)

branch: master
commit b104d764216026d77680a79993a051725e5ab94c
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    ; Fix last change
    
    * test/src/emacs-module-tests.el (module-function-object): Fix thinko
    in last change.
---
 test/src/emacs-module-tests.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el
index 8cef1cf..eb7c82b 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)))))))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]