[1959]
RE: 次のブックマークへ
みく
CEditView_Command_New.cpp
Command_BOOKMARK_NEXT()
nY=0;
Command_BOOKMARK_PREV()
nY=m_pcEditDoc->m_cLayoutMgr.GetLineCount()-1;
が再検索の開始位置の1個手前を指すので、
Command_BOOKMARK_NEXT()
nY=0-1;
Command_BOOKMARK_PREV()
nY=m_pcEditDoc->m_cLayoutMgr.GetLineCount()-1+1;
としてください。