mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-04-03 07:15:29 -04:00
Compare commits
No commits in common. "master" and "1.26.1" have entirely different histories.
2 changed files with 1 additions and 22 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
|
@ -1,6 +1,5 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
* [Unreleased](#unreleased)
|
|
||||||
* [1.26.1](#1-26-1)
|
* [1.26.1](#1-26-1)
|
||||||
* [1.26.0](#1-26-0)
|
* [1.26.0](#1-26-0)
|
||||||
* [1.25.0](#1-25-0)
|
* [1.25.0](#1-25-0)
|
||||||
|
|
@ -69,23 +68,6 @@
|
||||||
* [1.2.0](#1-2-0)
|
* [1.2.0](#1-2-0)
|
||||||
|
|
||||||
|
|
||||||
## Unreleased
|
|
||||||
### Added
|
|
||||||
### Changed
|
|
||||||
### Deprecated
|
|
||||||
### Removed
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
* Other output (key presses, query replies etc) being mixed with paste
|
|
||||||
data, both interactive pastes and OSC-52 ([#2307][2307]).
|
|
||||||
|
|
||||||
[2307]: https://codeberg.org/dnkl/foot/issues/2307
|
|
||||||
|
|
||||||
|
|
||||||
### Security
|
|
||||||
### Contributors
|
|
||||||
|
|
||||||
|
|
||||||
## 1.26.1
|
## 1.26.1
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
|
||||||
|
|
@ -120,10 +120,7 @@ term_to_slave(struct terminal *term, const void *data, size_t len)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (unlikely(tll_length(term->ptmx_buffers) > 0 ||
|
if (tll_length(term->ptmx_buffers) > 0 || term->is_sending_paste_data) {
|
||||||
term->is_sending_paste_data ||
|
|
||||||
tll_length(term->ptmx_paste_buffers) > 0))
|
|
||||||
{
|
|
||||||
/*
|
/*
|
||||||
* Don't even try to send data *now* if there's queued up
|
* Don't even try to send data *now* if there's queued up
|
||||||
* data, since that would result in events arriving out of
|
* data, since that would result in events arriving out of
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue