aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorStefan Monnier1999-12-10 01:39:53 +0000
committerStefan Monnier1999-12-10 01:39:53 +0000
commiteef28553ffebf3442261648784bf71b93cfe2796 (patch)
tree5063f542712c65eb6f39a5e2d4057f323cd9030c /src/keyboard.c
parent57207f1e9c88b0e09c0c55595224f32e042bac51 (diff)
downloademacs-eef28553ffebf3442261648784bf71b93cfe2796.tar.gz
emacs-eef28553ffebf3442261648784bf71b93cfe2796.zip
* keyboard.c (Qratio): New symbol.
(scroll_bar_parts): Add `Qratio' to it. (syms_of_keyboard): Init `Qratio'.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 05efd6908d8..be6acd31b54 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -4012,12 +4012,12 @@ static char *lispy_drag_n_drop_names[] =
4012/* Scroll bar parts. */ 4012/* Scroll bar parts. */
4013Lisp_Object Qabove_handle, Qhandle, Qbelow_handle; 4013Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
4014Lisp_Object Qup, Qdown, Qbottom, Qend_scroll; 4014Lisp_Object Qup, Qdown, Qbottom, Qend_scroll;
4015Lisp_Object Qtop; 4015Lisp_Object Qtop, Qratio;
4016 4016
4017/* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */ 4017/* An array of scroll bar parts, indexed by an enum scroll_bar_part value. */
4018Lisp_Object *scroll_bar_parts[] = { 4018Lisp_Object *scroll_bar_parts[] = {
4019 &Qabove_handle, &Qhandle, &Qbelow_handle, 4019 &Qabove_handle, &Qhandle, &Qbelow_handle,
4020 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll 4020 &Qup, &Qdown, &Qtop, &Qbottom, &Qend_scroll, &Qratio
4021}; 4021};
4022 4022
4023/* User signal events. */ 4023/* User signal events. */
@@ -9621,6 +9621,8 @@ syms_of_keyboard ()
9621 staticpro (&Qbottom); 9621 staticpro (&Qbottom);
9622 Qend_scroll = intern ("end-scroll"); 9622 Qend_scroll = intern ("end-scroll");
9623 staticpro (&Qend_scroll); 9623 staticpro (&Qend_scroll);
9624 Qratio = intern ("ratio");
9625 staticpro (&Qratio);
9624 9626
9625 Qevent_kind = intern ("event-kind"); 9627 Qevent_kind = intern ("event-kind");
9626 staticpro (&Qevent_kind); 9628 staticpro (&Qevent_kind);