# HG changeset patch # User Richard M. Stallman # Date 1109500551 0 # Node ID b6fcc94c2d6ae7fe61c544169dfaa9a3f1a31255 # Parent 90ca0ff282866eba8a741abb1fee2ef85aa3376e (regexp-builder): New function. diff -r 90ca0ff28286 -r b6fcc94c2d6a lisp/emacs-lisp/re-builder.el --- a/lisp/emacs-lisp/re-builder.el Sun Feb 27 10:34:59 2005 +0000 +++ b/lisp/emacs-lisp/re-builder.el Sun Feb 27 10:35:51 2005 +0000 @@ -327,10 +327,16 @@ "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)