Function: tpu-toggle-regexp
tpu-toggle-regexp is an interactive and byte-compiled function defined
in tpu-edt.el.gz.
Signature
(tpu-toggle-regexp)
Documentation
Switch in and out of regular expression search and replace mode.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
;;;
;;; Search
;;;
(defun tpu-toggle-regexp nil
"Switch in and out of regular expression search and replace mode."
(interactive)
(setq tpu-regexp-p (not tpu-regexp-p))
(tpu-set-search)
(and (called-interactively-p 'interactive)
(message "Regular expression search and substitute %sabled."
(if tpu-regexp-p "en" "dis"))))