mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-24 15:22:26 -07:00
Pacify gcc 11.1.1 -Wclobbered
* src/eval.c (Fprogn, internal_lisp_condition_case): Add CACHEABLE to work around more instances of -Wclobbered bug.
This commit is contained in:
parent
1a0fe2a518
commit
c22cf4d02f
1 changed files with 2 additions and 2 deletions
|
|
@ -462,7 +462,7 @@ DEFUN ("progn", Fprogn, Sprogn, 0, UNEVALLED, 0,
|
|||
usage: (progn BODY...) */)
|
||||
(Lisp_Object body)
|
||||
{
|
||||
Lisp_Object val = Qnil;
|
||||
Lisp_Object CACHEABLE val = Qnil;
|
||||
|
||||
while (CONSP (body))
|
||||
{
|
||||
|
|
@ -1429,7 +1429,7 @@ internal_lisp_condition_case (Lisp_Object var, Lisp_Object bodyform,
|
|||
}
|
||||
}
|
||||
|
||||
Lisp_Object result = eval_sub (bodyform);
|
||||
Lisp_Object CACHEABLE result = eval_sub (bodyform);
|
||||
handlerlist = oldhandlerlist;
|
||||
if (!NILP (success_handler))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue