search for: readlinestack

Displaying 2 results from an estimated 2 matches for "readlinestack".

2002 Oct 15
1
Core dump with a 64-bit system (PR#2165)
...hReadline: the first call pushes the function below the stack. The following patch solves the problem: --- R-1.6.0/src/unix/sys-std.c~ Sun Aug 25 12:51:20 2002 +++ R-1.6.0/src/unix/sys-std.c Tue Oct 15 14:43:00 2002 @@ -389,10 +389,10 @@ void pushReadline(char *prompt, rl_vcpfunc_t f) { - if(ReadlineStack.current >= ReadlineStack.max) { + if(ReadlineStack.current >= ReadlineStack.max - 1) { warning("An unusual circumstance has arisen in the nesting of readline input. Please report using bug.report()"); } else - ReadlineStack.fun[ReadlineStack.current++] = f; + Re...
2002 Nov 01
1
seemingly random "nesting of readline input" warnings
Recently, while using R-patched and now R-1.6.1 (on RedHat Linux 7.1) I've been getting the following warning in the course of everyday activity: [... some R activity ...] In addition: Warning message: An unusual circumstance has arisen in the nesting of readline input. Please report using bug.report() > The warning is difficult to reproduce because it seems to appear at random times,