Variable: eudc-hotlist-mode-hook

eudc-hotlist-mode-hook is a variable defined in eudc-hotlist.el.gz.

Value

nil

Documentation

Hook run after entering eudc-hotlist-mode.

No problems result if this variable is not bound. add-hook automatically binds it. (This is true for all hook variables.)

Source Code

;; Defined in /usr/src/emacs/lisp/net/eudc-hotlist.el.gz
(define-derived-mode eudc-hotlist-mode fundamental-mode "EUDC-Servers"
  "Major mode used to edit the hotlist of servers.

These are the special commands of this mode:\\<eudc-hotlist-mode-map>
    \\[eudc-hotlist-add-server] -- Add a new server to the list.
    \\[eudc-hotlist-delete-server] -- Delete the server at point from the list.
    \\[eudc-hotlist-select-server] -- Select the server at point.
    \\[eudc-hotlist-transpose-servers] -- Transpose the server at point and the previous one
    \\[eudc-hotlist-quit-edit] -- Commit the changes and quit.
    \\[kill-current-buffer] -- Quit without committing the changes."
  (setq buffer-read-only t))