@ -630,11 +630,11 @@ BufferID FileManager::loadFile(const TCHAR * filename, Document doc, int encodin
// 3 formats : WIN_FORMAT, UNIX_FORMAT and MAC_FORMAT
// 3 formats : WIN_FORMAT, UNIX_FORMAT and MAC_FORMAT
if ( nullptr ! = UnicodeConvertor . getNewBuf ( ) )
if ( nullptr ! = UnicodeConvertor . getNewBuf ( ) )
{
{
FormatType format = getEOLFormatForm ( UnicodeConvertor . getNewBuf ( ) , UnicodeConvertor . getNewSize ( ) );
FormatType format = getEOLFormatForm ( UnicodeConvertor . getNewBuf ( ) , UnicodeConvertor . getNewSize ( ) ,ndds . _format );
buf - > setFormat ( format ) ;
buf - > setFormat ( format ) ;
}
}
else
else
buf - > setFormat ( FormatType: : osdefaul t) ;
buf - > setFormat ( ndds. _forma t) ;
UniMode um = UnicodeConvertor . getEncoding ( ) ;
UniMode um = UnicodeConvertor . getEncoding ( ) ;
if ( um = = uni7Bit )
if ( um = = uni7Bit )
@ -681,13 +681,17 @@ bool FileManager::reloadBuffer(BufferID id)
{
{
if ( encoding = = - 1 )
if ( encoding = = - 1 )
{
{
NppParameters * pNppParamInst = NppParameters : : getInstance ( ) ;
const NewDocDefaultSettings & ndds = ( pNppParamInst - > getNppGUI ( ) ) . getNewDocDefaultSettings ( ) ; // for ndds._format
if ( nullptr ! = UnicodeConvertor . getNewBuf ( ) )
if ( nullptr ! = UnicodeConvertor . getNewBuf ( ) )
{
{
FormatType format = getEOLFormatForm ( UnicodeConvertor . getNewBuf ( ) , UnicodeConvertor . getNewSize ( ) ) ;
FormatType format = getEOLFormatForm ( UnicodeConvertor . getNewBuf ( ) , UnicodeConvertor . getNewSize ( ) ,ndds . _format );
buf - > setFormat ( format ) ;
buf - > setFormat ( format ) ;
}
}
else
else {
buf - > setFormat ( FormatType : : osdefault ) ;
buf - > setFormat ( ndds . _format ) ;
}
buf - > setUnicodeMode ( UnicodeConvertor . getEncoding ( ) ) ;
buf - > setUnicodeMode ( UnicodeConvertor . getEncoding ( ) ) ;
}
}
@ -1464,7 +1468,17 @@ inline bool FileManager::loadFileData(Document doc, const TCHAR * filename, char
// broadcast the format
// broadcast the format
if ( pFormat ! = nullptr )
if ( pFormat ! = nullptr )
* pFormat = ( format ! = FormatType : : unknown ) ? format : FormatType : : osdefault ;
{
if ( format = = FormatType : : unknown ) {
NppParameters * pNppParamInst = NppParameters : : getInstance ( ) ;
const NewDocDefaultSettings & ndds = ( pNppParamInst - > getNppGUI ( ) ) . getNewDocDefaultSettings ( ) ; // for ndds._format
* pFormat = ndds . _format ;
}
else
{
* pFormat = format ;
}
}
_pscratchTilla - > execute ( SCI_EMPTYUNDOBUFFER ) ;
_pscratchTilla - > execute ( SCI_EMPTYUNDOBUFFER ) ;
_pscratchTilla - > execute ( SCI_SETSAVEPOINT ) ;
_pscratchTilla - > execute ( SCI_SETSAVEPOINT ) ;