diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-03-28 02:21:28 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-03-28 02:21:28 +0000 |
commit | 1e0a78a10c4e6289c1c8157b7466dc8fa6ba8ed4 (patch) | |
tree | 6c6fdd2181864ac5a92304d4c6264869ecb6799b | |
parent | 869f4785b87be47cbbcb8a2586dc4ff374a57ccb (diff) | |
download | emacs-1e0a78a10c4e6289c1c8157b7466dc8fa6ba8ed4.tar.gz emacs-1e0a78a10c4e6289c1c8157b7466dc8fa6ba8ed4.tar.bz2 emacs-1e0a78a10c4e6289c1c8157b7466dc8fa6ba8ed4.zip |
(set-match-data): New alias.
-rw-r--r-- | lisp/subr.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 368bf55cb6c..5a08278241f 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -469,6 +469,7 @@ Please convert your programs to use the variable `baud-rate' directly." (defalias 'search-forward-regexp (symbol-function 're-search-forward)) (defalias 'search-backward-regexp (symbol-function 're-search-backward)) (defalias 'int-to-string 'number-to-string) +(defalias 'set-match-data 'store-match-data) ;;; Should this be an obsolete name? If you decide it should, you get ;;; to go through all the sources and change them. |