Function: sqlite-more-p
sqlite-more-p is a function defined in sqlite.c.
Signature
(sqlite-more-p SET)
Documentation
Say whether there are any further results in SET.
Source Code
// Defined in /usr/src/emacs/src/sqlite.c
{
check_sqlite (set, true);
if (XSQLITE (set)->eof)
return Qnil;
else
return Qt;
}