mayur...@acm.org (Mayuresh) writes: >NetBSD (over vnc):
>Cursor down: keycode 104 (keysym 0xff54, Down) >Page down: keycode 105 (keysym 0xff56, Next) >Linux: >Cursor down: keycode 116 (keysym 0xff54, Down) >Page down keycode 117 (keysym 0xff56, Next) >Some difference in keycode but not in keysym. What does it tell? The keycodes identify the key which is pressed. The value depends on the hardware (e.g. USB vs. PS/2) and layout of the keyboard. The keysym corresponds to the meaning of the key. In both cases the application sees the "arrow down" (== Down) and the "page down" (== Next) keys. Behaviour on Linux (Debian 12) and NetBSD (-current), both open on the same X display, is almost the same. Only when you view a partial page, scroll down with the Down key to the page end, the next step goes to the beginning of the following page (Linux) or the end of the following page (NetBSD). On Debian it's mupdf 1.21.1+ds2-1+b4 On NetBSD it's mupdf-1.24.10nb4 That's probably where the different behaviour comes from. A quick search however didn't show any known bugs in that area.