Function: window-hscroll

window-hscroll is a function defined in window.c.

Signature

(window-hscroll &optional WINDOW)

Documentation

Return the number of columns by which WINDOW is scrolled from left margin.

WINDOW must be a live window and defaults to the selected one.

View in manual

Source Code

// Defined in /usr/src/emacs/src/window.c
{
  return make_fixnum (decode_live_window (window)->hscroll);
}