* src/lyxrc.C: Fix typo in LyXRC::write

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13712 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-04-22 16:49:19 +00:00
parent d732249e2b
commit 39de58c7a7

View File

@ -1795,7 +1795,7 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc) const
case RC_USELASTFILEPOS:
if (ignore_system_lyxrc ||
use_lastfilepos != system_lyxrc.use_lastfilepos) {
os << "\\use_session " << convert<string>(use_lastfilepos)
os << "\\use_lastfilepos " << convert<string>(use_lastfilepos)
<< '\n';
}
case RC_LOADSESSION: