diff options
author | Maxime “pep” Buquet <pep@bouah.net> | 2020-04-05 02:26:02 +0200 |
---|---|---|
committer | Maxime “pep” Buquet <pep@bouah.net> | 2020-04-05 02:26:02 +0200 |
commit | 747deb41e68ea6331e7bf66294e7b21bf63d148c (patch) | |
tree | 590931ca669c99c0a05e04c451ab7d4a48a15e72 | |
parent | bcd96cc8a440b1ef54f6dd741e87adc62383b0af (diff) | |
download | poezio-747deb41e68ea6331e7bf66294e7b21bf63d148c.tar.gz poezio-747deb41e68ea6331e7bf66294e7b21bf63d148c.tar.bz2 poezio-747deb41e68ea6331e7bf66294e7b21bf63d148c.tar.xz poezio-747deb41e68ea6331e7bf66294e7b21bf63d148c.zip |
TextBuffer: add note about LMC compat
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
-rw-r--r-- | poezio/text_buffer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/text_buffer.py b/poezio/text_buffer.py index c5e61a6a..2c0d192a 100644 --- a/poezio/text_buffer.py +++ b/poezio/text_buffer.py @@ -121,7 +121,7 @@ class TextBuffer: self._messages_nb_limit = messages_nb_limit # type: int # Message objects self.messages = [] # type: List[Message] - # Correction id -> Original message id + # COMPAT: Correction id -> Original message id. self.correction_ids = {} # type: Dict[str, str] # we keep track of one or more windows # so we can pass the new messages to them, as they are added, so |