summaryrefslogtreecommitdiff
path: root/src/buffer.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2018-04-07 12:33:15 +1000
committerMaxime Coste <mawww@kakoune.org>2018-04-07 12:33:15 +1000
commit6f58c278bfee6a801795a8883f3d73f1c36a71bb (patch)
tree5c980eadf4fc681dba22e0bbcd607f46b659310c /src/buffer.cc
parent23853f499efffd177309fd3221b5501a27115e19 (diff)
parentcb02186c77e307922a92176893d8a323641dacaf (diff)
Merge remote-tracking branch 'Delapouite/no-such'
Diffstat (limited to 'src/buffer.cc')
-rw-r--r--src/buffer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.cc b/src/buffer.cc
index f36944e4..f9af45da 100644
--- a/src/buffer.cc
+++ b/src/buffer.cc
@@ -167,7 +167,7 @@ bool Buffer::set_name(String name)
void Buffer::throw_if_read_only() const
{
if (m_flags & Flags::ReadOnly)
- throw runtime_error("Buffer is read-only");
+ throw runtime_error("buffer is read-only");
}
void Buffer::update_display_name()