From e342a48a657eae5dfba0dd5882dc935f694769bb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 27 Feb 2005 10:35:51 +0000 Subject: [PATCH] (regexp-builder): New function. --- lisp/emacs-lisp/re-builder.el | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/re-builder.el b/lisp/emacs-lisp/re-builder.el index 019a45213c8..d26a0ae5f38 100644 --- a/lisp/emacs-lisp/re-builder.el +++ b/lisp/emacs-lisp/re-builder.el @@ -327,10 +327,16 @@ Except for Lisp syntax this is the same as `reb-regexp'.") "Return binding for SYMBOL in the RE Builder target buffer." `(with-current-buffer reb-target-buffer ,symbol)) +;;; This is to help people find this in Apropos. +;;;###autoload +(defun regexp-builder () + "Alias for `re-builder': Construct a regexp interactively." + (interactive) + (re-builder)) ;;;###autoload (defun re-builder () - "Call up the RE Builder for the current window." + "Construct a regexp interactively." (interactive) (if (and (string= (buffer-name) reb-buffer) -- 2.39.5