bug-gnu-emacs
[Top][All Lists]
Advanced

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

Re: Fcall_interactively sometimes leaves enable uninitialized


From: Eli Zaretskii
Subject: Re: Fcall_interactively sometimes leaves enable uninitialized
Date: Mon, 16 Apr 2001 09:41:20 +0300 (IDT)

On 15 Apr 2001, Kalle Olavi Niemitalo wrote:

> Fcall_interactively in src/callint.c leaves the local variable
> enable uninitialized if the FUNCTION parameter isn't a symbol.

Thanks, this is already fixed in the current development sources.  The
code now says:

  if (SYMBOLP (function))
    enable = Fget (function, Qenable_recursive_minibuffers);
  else
    enable = Qnil;

So the variable is always initialized.



reply via email to

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