Variable: reb-lisp-mode-hook

reb-lisp-mode-hook is a variable defined in re-builder.el.gz.

Value

nil

Documentation

Hook run after entering reb-lisp-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/emacs-lisp/re-builder.el.gz
(define-derived-mode reb-lisp-mode
  emacs-lisp-mode "RE Builder Lisp"
  "Major mode for interactively building symbolic Regular Expressions."
  ;; Pull in packages as needed
  (when (eq reb-re-syntax 'rx)          ; rx-to-string is autoloaded
    (require 'rx))                      ; require rx anyway
  (reb-mode-common))