aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-07-21 09:10:49 +0000
committerJuanma Barranquero2005-07-21 09:10:49 +0000
commitbbb319fb9914b08d1e38c9e6d5b3353d2ce0e642 (patch)
treee89447a5402b4e416cadcef3840d648758c9999e
parent6ed554f2ac35c8cf4365c7bb435e99cf54122ff3 (diff)
downloademacs-bbb319fb9914b08d1e38c9e6d5b3353d2ce0e642.tar.gz
emacs-bbb319fb9914b08d1e38c9e6d5b3353d2ce0e642.zip
(regexp-builder): Use `defalias' instead of faking it.
-rw-r--r--lisp/emacs-lisp/re-builder.el5
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/re-builder.el b/lisp/emacs-lisp/re-builder.el
index 9aab41f41dd..bdfe79b3b6a 100644
--- a/lisp/emacs-lisp/re-builder.el
+++ b/lisp/emacs-lisp/re-builder.el
@@ -332,10 +332,7 @@ Except for Lisp syntax this is the same as `reb-regexp'.")
332 332
333;;; This is to help people find this in Apropos. 333;;; This is to help people find this in Apropos.
334;;;###autoload 334;;;###autoload
335(defun regexp-builder () 335(defalias 'regexp-builder 're-builder)
336 "Alias for `re-builder': Construct a regexp interactively."
337 (interactive)
338 (re-builder))
339 336
340;;;###autoload 337;;;###autoload
341(defun re-builder () 338(defun re-builder ()