mirror of
https://github.com/mawww/kakoune.git
synced 2024-12-26 21:22:00 +03:00
Fix write_debug with no debug buffer and multiple lines
This commit is contained in:
parent
b1281d225d
commit
5383cece3e
@ -3,6 +3,7 @@
|
||||
#include "assert.hh"
|
||||
#include "buffer.hh"
|
||||
#include "buffer_manager.hh"
|
||||
#include "buffer_utils.hh"
|
||||
#include "string.hh"
|
||||
|
||||
namespace Kakoune
|
||||
@ -22,7 +23,7 @@ void write_debug(StringView str)
|
||||
else
|
||||
{
|
||||
String line = str + ((str.empty() or str.back() != '\n') ? "\n" : "");
|
||||
new Buffer(debug_buffer_name, Buffer::Flags::NoUndo, { line });
|
||||
create_buffer_from_data(line, debug_buffer_name, Buffer::Flags::NoUndo);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user