[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#71774: 31.0.50; Hash table weakness broken?
From: |
Stefan Monnier |
Subject: |
bug#71774: 31.0.50; Hash table weakness broken? |
Date: |
Wed, 26 Jun 2024 10:11:51 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
>> Martin, can you confirm that it fixes the problem for you (so I can
>> install it on `emacs-30`)?
> Unless I did something wrong it does not fix the problem for me.
Duh, I reversed the condition.
Can you (re)try with the patch below?
Stefan
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el
index 7d0312eb2a4..4aa9d9714cd 100644
--- a/lisp/progmodes/elisp-mode.el
+++ b/lisp/progmodes/elisp-mode.el
@@ -1633,7 +1633,8 @@ eval-last-sexp
If `eval-expression-debug-on-error' is non-nil, which is the default,
this command arranges for all errors to enter the debugger."
(interactive "P")
- (values--store-value
+ (funcall
+ (if eval-expression-debug-on-error #'identity #'values--store-value)
(handler-bind ((error (if eval-expression-debug-on-error
#'eval-expression--debug #'ignore)))
(elisp--eval-last-sexp eval-last-sexp-arg-internal))))
- bug#71774: 31.0.50; Hash table weakness broken?, (continued)
bug#71774: 31.0.50; Hash table weakness broken?, Pip Cet, 2024/06/26
- bug#71774: 31.0.50; Hash table weakness broken?, martin rudalics, 2024/06/26
- bug#71774: 31.0.50; Hash table weakness broken?, Pip Cet, 2024/06/27
- bug#71774: 31.0.50; Hash table weakness broken?, martin rudalics, 2024/06/26
- bug#71774: 31.0.50; Hash table weakness broken?, Pip Cet, 2024/06/27
- bug#71774: 31.0.50; Hash table weakness broken?, Stefan Monnier, 2024/06/26
- bug#71774: 31.0.50; Hash table weakness broken?, martin rudalics, 2024/06/26
- bug#71774: 31.0.50; Hash table weakness broken?,
Stefan Monnier <=
- bug#71774: 31.0.50; Hash table weakness broken?, martin rudalics, 2024/06/27
- bug#71774: 31.0.50; Hash table weakness broken?, Stefan Monnier, 2024/06/27
- bug#71774: 31.0.50; Hash table weakness broken?, Eli Zaretskii, 2024/06/28
- bug#71774: 31.0.50; Hash table weakness broken?, Stefan Kangas, 2024/06/28
- bug#71774: 31.0.50; Hash table weakness broken?, Stefan Monnier, 2024/06/28
bug#71774: 31.0.50; Hash table weakness broken?, Pip Cet, 2024/06/27