Function: gnus-set-window-start

gnus-set-window-start is a byte-compiled function defined in gnus-util.el.gz.

Signature

(gnus-set-window-start &optional POINT)

Documentation

Set the window start to POINT, or (point) if nil.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-set-window-start (&optional point)
  "Set the window start to POINT, or (point) if nil."
  (let ((win (gnus-get-buffer-window (current-buffer) t)))
    (when win
      (set-window-start win (or point (point))))))