aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoão Távora2023-04-03 00:33:03 +0100
committerJoão Távora2023-04-03 00:33:03 +0100
commitc108132d3bb69d0cc8d2e0222a781dff9abca087 (patch)
treef2bd600bfcf0f9f06dd36b7f08bfcc605da352fe /src
parentf886ae5cf07bb40ad3fd0262942bdc74efca0277 (diff)
parent3bdbb66efb9895b8ed55270075fa7d8329f8d36b (diff)
downloademacs-c108132d3bb69d0cc8d2e0222a781dff9abca087.tar.gz
emacs-c108132d3bb69d0cc8d2e0222a781dff9abca087.zip
Merge from origin/emacs-29
3bdbb66efb9 ; CONTRIBUTE: Minor stylistic changes. d0eb12e8d3c Fix typo in section 14.1 of Emacs Manual b2fbec37f39 ; * etc/EGLOT-NEWS: Clarify scope of topmost section 131ec049db0 Eglot: unbreak eglot-extend-to-xref on w32 0622e1f29f6 Eglot: ensure server shutdown turns off eglot-inlay-hints... 59f66ea3027 ; * lisp/emacs-lisp/package-vc.el: Remove completed item ... d23dc3dd7e3 ; * lisp/emacs-lisp/package-vc.el (package-vc): Fix manua... 4508a024e81 ; Clarify documentation of 'cursor' text property d2e82817a3f Add two typescript-ts-mode faces (bug#62429) 10918fc9d24 Fix scrolling window when point moves up 9b32bc134c4 Improve documentation of 'defcustom's :set keyword ab4273056e0 Comp fix calls to redefined primtives with op-bytecode (b... c98929c7e18 ; Fix last change a14c3f62a67 ; Fix last change 09fece5722f Fix duplicate defcustom in eww.el e45bd10a3d9 Fix indentation regression in 'C-h l' 46fd10a7600 * doc/misc/tramp.texi (Remote shell setup): Clarify use o...
Diffstat (limited to 'src')
-rw-r--r--src/comp.c8
-rw-r--r--src/xdisp.c5
2 files changed, 11 insertions, 2 deletions
diff --git a/src/comp.c b/src/comp.c
index 5cbe441dd7f..9ff3efedbdd 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -5910,6 +5910,14 @@ For internal use. */);
5910 Vcomp_loaded_comp_units_h = 5910 Vcomp_loaded_comp_units_h =
5911 CALLN (Fmake_hash_table, QCweakness, Qvalue, QCtest, Qequal); 5911 CALLN (Fmake_hash_table, QCweakness, Qvalue, QCtest, Qequal);
5912 5912
5913 DEFVAR_LISP ("comp-subr-arities-h", Vcomp_subr_arities_h,
5914 doc: /* Hash table recording the arity of Lisp primitives.
5915This is in case they are redefined so the compiler still knows how to
5916compile calls to them.
5917subr-name -> arity
5918For internal use. */);
5919 Vcomp_subr_arities_h = CALLN (Fmake_hash_table, QCtest, Qequal);
5920
5913 Fprovide (intern_c_string ("native-compile"), Qnil); 5921 Fprovide (intern_c_string ("native-compile"), Qnil);
5914#endif /* #ifdef HAVE_NATIVE_COMP */ 5922#endif /* #ifdef HAVE_NATIVE_COMP */
5915 5923
diff --git a/src/xdisp.c b/src/xdisp.c
index 754a7c16c76..76d6592bf00 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -18546,8 +18546,9 @@ try_scrolling (Lisp_Object window, bool just_this_one_p,
18546 start_display (&it, w, startp); 18546 start_display (&it, w, startp);
18547 18547
18548 if (arg_scroll_conservatively) 18548 if (arg_scroll_conservatively)
18549 amount_to_scroll = max (dy, frame_line_height 18549 amount_to_scroll
18550 * max (scroll_step, temp_scroll_step)); 18550 = min (max (dy, frame_line_height),
18551 frame_line_height * arg_scroll_conservatively);
18551 else if (scroll_step || temp_scroll_step) 18552 else if (scroll_step || temp_scroll_step)
18552 amount_to_scroll = scroll_max; 18553 amount_to_scroll = scroll_max;
18553 else 18554 else