diff options
author | Philipp Stephani <phst@google.com> | 2018-09-21 19:28:08 +0200 |
---|---|---|
committer | Philipp Stephani <phst@google.com> | 2019-03-21 20:10:27 +0100 |
commit | ee7ad83f20903208404a84b58b7a478b62924570 (patch) | |
tree | fcddf54dfdc25dc1cf1fbc6c515c8e727df8924e /test/data | |
parent | 107215596c1a8edfb239a88850d822642bc0e4af (diff) | |
download | emacs-ee7ad83f20903208404a84b58b7a478b62924570.tar.gz emacs-ee7ad83f20903208404a84b58b7a478b62924570.tar.bz2 emacs-ee7ad83f20903208404a84b58b7a478b62924570.zip |
Revert "Rely on conservative stack scanning to find "emacs_value"s"
This reverts commit 3eb93c07f7a60ac9ce8a16f10c3afd5a3a31243a.
There was no consensus for that commit, see
https://lists.gnu.org/archive/html/emacs-devel/2016-01/msg00150.html.
Also, reverting this commit should fix Bug#31238.
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/emacs-module/mod-test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/data/emacs-module/mod-test.c b/test/data/emacs-module/mod-test.c index 47ea159d0e7..a39e41afee6 100644 --- a/test/data/emacs-module/mod-test.c +++ b/test/data/emacs-module/mod-test.c @@ -94,7 +94,7 @@ Fmod_test_signal (emacs_env *env, ptrdiff_t nargs, emacs_value args[], assert (env->non_local_exit_check (env) == emacs_funcall_exit_return); env->non_local_exit_signal (env, env->intern (env, "error"), env->make_integer (env, 56)); - return env->intern (env, "nil"); + return NULL; } @@ -106,7 +106,7 @@ Fmod_test_throw (emacs_env *env, ptrdiff_t nargs, emacs_value args[], assert (env->non_local_exit_check (env) == emacs_funcall_exit_return); env->non_local_exit_throw (env, env->intern (env, "tag"), env->make_integer (env, 65)); - return env->intern (env, "nil"); + return NULL; } @@ -304,7 +304,7 @@ Fmod_test_invalid_finalizer (emacs_env *env, ptrdiff_t nargs, emacs_value *args, { current_env = env; env->make_user_ptr (env, invalid_finalizer, NULL); - return env->funcall (env, env->intern (env, "garbage-collect"), 0, NULL); + return env->intern (env, "nil"); } static void |