aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2023-05-18 07:49:49 -0400
committerEli Zaretskii2023-05-18 07:49:49 -0400
commitf518543aa4ed00f91842dc5a58cc90a320e3e2e5 (patch)
tree32ff37df4cc7ac8159551be8f9083eacd6d1ebcb /src
parent92a00de5c59c6a694e9c0c7b1b5b43a2e2d75726 (diff)
parentf8d9e40d2c1d127a125adc097d985a0b6964a86c (diff)
downloademacs-f518543aa4ed00f91842dc5a58cc90a320e3e2e5.tar.gz
emacs-f518543aa4ed00f91842dc5a58cc90a320e3e2e5.zip
Merge from origin/emacs-29
f8d9e40d2c1 Attempt to fix redisplay problems on macOS 4daa6f70497 ; * lisp/simple.el (async-shell-command): Add commentary ... dc1a437d460 Clarify misleading comment in isearch.el af3b0dc53ff Improve documentation of package-menu commands d879847cd4d Fix M-x completion-predicate under python-ts-mode 1e57b2b4c79 * Account for `byte-compile-warnings' during native compi... b5bfd808c6b Avoid duplicate VC packages in 'package-selected-packages' c18f9f155f6 * lisp/tab-bar.el (tab-bar-new-tab-to): Set 'window-side'... 33485fe8f74 ; Better warning message when loading tree-sitter fails 95a724abaac Update to Org 9.6.6 c665ca79ff4 ; * admin/make-tarball.txt: Minor copyedits. 3aef46e466f Merge branch 'emacs-29' of git.sv.gnu.org:/srv/git/emacs ... 229af8e4b31 ; * lisp/progmodes/csharp-mode.el (csharp-ts-mode--defun-...
Diffstat (limited to 'src')
-rw-r--r--src/nsterm.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nsterm.m b/src/nsterm.m
index b9e3cbf81a1..3e089cc1ff1 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -2704,11 +2704,12 @@ ns_scroll_run (struct window *w, struct run *run)
2704 { 2704 {
2705 NSRect srcRect = NSMakeRect (x, from_y, width, height); 2705 NSRect srcRect = NSMakeRect (x, from_y, width, height);
2706 NSPoint dest = NSMakePoint (x, to_y); 2706 NSPoint dest = NSMakePoint (x, to_y);
2707 NSRect destRect = NSMakeRect (x, from_y, width, height);
2707 EmacsView *view = FRAME_NS_VIEW (f); 2708 EmacsView *view = FRAME_NS_VIEW (f);
2708 2709
2709 [view copyRect:srcRect to:dest]; 2710 [view copyRect:srcRect to:dest];
2710#ifdef NS_IMPL_COCOA 2711#ifdef NS_IMPL_COCOA
2711 [view setNeedsDisplayInRect:srcRect]; 2712 [view setNeedsDisplayInRect:destRect];
2712#endif 2713#endif
2713 } 2714 }
2714 2715