diff options
| author | Maxime Coste <mawww@kakoune.org> | 2022-06-08 19:43:03 +1000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2022-07-05 08:43:40 +1000 |
| commit | df79d0c2453991c4762c6c6ffbccd714312c87f9 (patch) | |
| tree | 6b92b4789d05cd5a78d2b7d22adb72f3c4d26402 /src/buffer.hh | |
| parent | b5e565bd6a957373096ad7fd636d4e931940cf9b (diff) | |
Distinguish between non-eol max column target and plain max column
Diffstat (limited to 'src/buffer.hh')
| -rw-r--r-- | src/buffer.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.hh b/src/buffer.hh index 7dd4bdad..ce336e96 100644 --- a/src/buffer.hh +++ b/src/buffer.hh @@ -188,8 +188,8 @@ public: // returns nearest valid coordinates from given ones BufferCoord clamp(BufferCoord coord) const; - BufferCoord offset_coord(BufferCoord coord, CharCount offset, ColumnCount, bool) const; - BufferCoordAndTarget offset_coord(BufferCoordAndTarget coord, LineCount offset, ColumnCount tabstop, bool avoid_eol) const; + BufferCoord offset_coord(BufferCoord coord, CharCount offset, ColumnCount) const; + BufferCoordAndTarget offset_coord(BufferCoordAndTarget coord, LineCount offset, ColumnCount tabstop) const; const String& name() const { return m_name; } const String& display_name() const { return m_display_name; } |
