pager: rename variables of backup fds
The next patch will add backup file objects, so the original variable names
would be confusing.
from mercurial import utildef makedate(): return 0, 0def getuser(): return 'bob'# mock the date and user apis so the output is always the samedef uisetup(ui): util.makedate = makedate util.getuser = getuser