FACT++  1.0
bool Readline::IsStopped ( ) const
Returns
the status of rl_done and rl_pending_input. If rl_done==1 and rl_pending_input==4 true is returned, false otherwise. This can be used to check if Stop() was called. If readline is not in operation.

Definition at line 1548 of file Readline.cc.

Referenced by Execute(), GetUpdatePrompt(), and ConsoleStream::Run().

1549 {
1550  return rl_done==1 && rl_pending_input==4;
1551 };

+ Here is the caller graph for this function: