(regexp-builder): New function.
authorRichard M. Stallman <rms@gnu.org>
Sun, 27 Feb 2005 10:35:51 +0000 (10:35 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 27 Feb 2005 10:35:51 +0000 (10:35 +0000)
lisp/emacs-lisp/re-builder.el

index 019a452..d26a0ae 100644 (file)
@@ -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)