Function: reb-enter-subexp-mode

reb-enter-subexp-mode is an interactive and byte-compiled function defined in re-builder.el.gz.

Signature

(reb-enter-subexp-mode)

Documentation

Enter the subexpression mode in the RE Builder.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/re-builder.el.gz
;; The subexpression mode is not electric because the number of
;; matches should be seen rather than a prompt.
(defun reb-enter-subexp-mode ()
  "Enter the subexpression mode in the RE Builder."
  (interactive)
  (setq reb-subexp-mode t)
  (reb-update-modestring)
  (use-local-map reb-subexp-mode-map)
  (message (substitute-command-keys
            "\\`0'-\\`9' to display subexpressions  \\`q' to quit subexp mode")))