aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Kangas2022-12-02 12:36:35 +0100
committerStefan Kangas2022-12-02 12:36:35 +0100
commit3eb64d21f62c7457895bd19eec76d30bb82566a1 (patch)
tree78e8a184e7c111ebdcb900ecbb4505f89d666753 /src
parent7d6f9753ade57821f5c409bcdeea700be8e53a74 (diff)
parent39e0c60176242a2ca09f65090bcf2751b346ed26 (diff)
downloademacs-3eb64d21f62c7457895bd19eec76d30bb82566a1.tar.gz
emacs-3eb64d21f62c7457895bd19eec76d30bb82566a1.zip
Merge from origin/emacs-29
39e0c60176 * lisp/tab-bar.el (tab-bar-format-align-right): Fix alignm... bf66b90b9a Fix the width of margins for icons in outline-minor-mode (... 2e4960d63d ; Change c-ts-mode--base-mode to c-ts-base-mode 1aa1f8432b Add new TypeScript mode tsx-ts-mode ad0563855f Add case and match to python--treesit-keywords (bug#59720) 16e68e64f9 ; * lisp/progmodes/c-ts-mode.el: Change rx to regexp-opt. 3bccef6f52 project-files (VC-aware): Make sure the VC backend is loaded 03a40b974c term--update-term-menu: Add the menu to term-terminal-menu 368c7c7d8e Improve detection of very long lines 9c58ea37af ; Fix last change in proced.el 0c1495574a Add colors to Proced (bug#59407) 91dba5b066 Merge branch 'emacs-29' of git.savannah.gnu.org:/srv/git/e... 70ecdebc92 ; Fix typos (don't abbreviate "with" or "without") d94c5870c0 ; * lisp/tab-bar.el (tab-bar-change-tab-group): Doc fix. # Conflicts: # etc/NEWS
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index e4e52fe901d..466bb1534ae 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -19535,7 +19535,8 @@ redisplay_window (Lisp_Object window, bool just_this_one_p)
19535 /* Check whether the buffer to be displayed contains long lines. */ 19535 /* Check whether the buffer to be displayed contains long lines. */
19536 if (!NILP (Vlong_line_threshold) 19536 if (!NILP (Vlong_line_threshold)
19537 && !current_buffer->long_line_optimizations_p 19537 && !current_buffer->long_line_optimizations_p
19538 && CHARS_MODIFF - CHARS_UNCHANGED_MODIFIED > 8) 19538 && (CHARS_MODIFF - CHARS_UNCHANGED_MODIFIED > 8
19539 || current_buffer->clip_changed))
19539 { 19540 {
19540 ptrdiff_t cur, next, found, max = 0, threshold; 19541 ptrdiff_t cur, next, found, max = 0, threshold;
19541 threshold = XFIXNUM (Vlong_line_threshold); 19542 threshold = XFIXNUM (Vlong_line_threshold);