-- WalnutLogExtras.Mesa
-- Contents: types and procedures which take the current log file as implicit parameter
-- the current log file is the only file which Walnut writes on, except during an Expunge
-- Last Edited by: Willie-Sue, August 24, 1984 9:50:27 am PDT
DIRECTORY
Rope USING [ROPE];
WalnutLogExtras: CEDAR DEFINITIONS =
BEGIN
onlyOneTempLog: BOOL;
walnutTempLogName: Rope.ROPE;  -- only in one place!
QuietlyMarkTransaction: PROC;
-- does a commit of the transaction; also closes and re-opens the log file, to get its
-- create date changed
END.