Function: so-long-deferred

so-long-deferred is a byte-compiled function defined in so-long.el.gz.

Signature

(so-long-deferred)

Documentation

Arrange to call so-long if the current buffer is displayed in a window.

Source Code

;; Defined in /usr/src/emacs/lisp/so-long.el.gz
(defun so-long-deferred ()
  "Arrange to call `so-long' if the current buffer is displayed in a window."
  ;; The first time that a window-configuration change results in the buffer
  ;; being displayed in a window, `so-long' will be called (with the window
  ;; selected and the buffer set as current).  Because `so-long' removes this
  ;; buffer-local hook value, it triggers once at most.
  (add-hook 'window-configuration-change-hook #'so-long nil :local))