Variable: after-init-hook

after-init-hook is a variable defined in startup.el.gz.

Value

(w32-check-shell-configuration
 org-persist-load-all
 #[0
  "\303\235\203�\304\303\"\301\305!\210	\205�\306 \210\307\211\207"
  [command-line-args desktop-save-mode inhibit-startup-screen
		     "--no-desktop" delete 0 desktop-read t]
  3]
 tramp-register-archive-autoload-file-name-handler
 table--make-cell-map)

Documentation

Normal hook run after initializing the Emacs session.

It is run after Emacs loads the init file, default library, the abbrevs file, and additional Lisp packages (if any), and setting the value of after-init-time.

There is no condition-case around the running of this hook; therefore, if debug-on-error is non-nil, an error in one of these functions will invoke the debugger.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/startup.el.gz
(defvar after-init-hook nil
  "Normal hook run after initializing the Emacs session.
It is run after Emacs loads the init file, `default' library, the
abbrevs file, and additional Lisp packages (if any), and setting
the value of `after-init-time'.

There is no `condition-case' around the running of this hook;
therefore, if `debug-on-error' is non-nil, an error in one of
these functions will invoke the debugger.")