Function: reb-display-subexp
reb-display-subexp is an interactive and byte-compiled function
defined in re-builder.el.gz.
Signature
(reb-display-subexp &optional SUBEXP)
Documentation
Highlight only subexpression SUBEXP in the RE Builder.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/re-builder.el.gz
(defun reb-display-subexp (&optional subexp)
"Highlight only subexpression SUBEXP in the RE Builder."
(interactive)
(setq reb-subexp-displayed
(or subexp (string-to-number (format "%c" last-command-event))))
(reb-update-modestring)
(reb-do-update reb-subexp-displayed))