summaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-05-14 22:16:51 +0100
committerMaxime Coste <frrrwww@gmail.com>2014-05-14 22:16:51 +0100
commite86e5b1b81253b0e6fa3fb3fb23070b4020ad36b (patch)
treec5c4ab81ec699a9574c6c6616f5938daee5ab042 /gdb
parent2f1388df7bafec0d77b25abc27424c9f14629506 (diff)
Fix gdb pretty printer
Diffstat (limited to 'gdb')
-rw-r--r--gdb/kakoune.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/kakoune.py b/gdb/kakoune.py
index 7486a7fa..2192d52f 100644
--- a/gdb/kakoune.py
+++ b/gdb/kakoune.py
@@ -105,8 +105,8 @@ def build_pretty_printer():
pp = gdb.printing.RegexpCollectionPrettyPrinter("kakoune")
pp.add_printer('memoryview', '^Kakoune::memoryview<.*>$', MemoryView)
pp.add_printer('LineAndColumn', '^Kakoune::LineAndColumn<.*>$', LineAndColumn)
- pp.add_printer('BufferCoord', '^Kakoune::BufferCoord$', LineAndColumn)
- pp.add_printer('DisplayCoord', '^Kakoune::DisplayCoord$', LineAndColumn)
+ pp.add_printer('ByteCoord', '^Kakoune::ByteCoord$', LineAndColumn)
+ pp.add_printer('CharCoord', '^Kakoune::CharCoord$', LineAndColumn)
pp.add_printer('BufferIterator', '^Kakoune::BufferIterator$', BufferIterator)
pp.add_printer('String', '^Kakoune::String$', String)
pp.add_printer('Option', '^Kakoune::Option$', Option)