diff options
author | Dave Love <fx@gnu.org> | 2000-03-17 10:07:00 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-03-17 10:07:00 +0000 |
commit | b42f693ccb6df0adf0f509ae8766a51f5bfd4cf5 (patch) | |
tree | 1ab727e44ffb64a12f6c5d098b90bbb3888ffa4c /lisp/pcvs-util.el | |
parent | 83488cce94f154d24b7725a2f4f95aed96f93e90 (diff) | |
download | emacs-b42f693ccb6df0adf0f509ae8766a51f5bfd4cf5.tar.gz |
(cvs-strings->string): Rename
replace-regexps-in-string.
Diffstat (limited to 'lisp/pcvs-util.el')
-rw-r--r-- | lisp/pcvs-util.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/pcvs-util.el b/lisp/pcvs-util.el index 9763fd82566..044fc858ae4 100644 --- a/lisp/pcvs-util.el +++ b/lisp/pcvs-util.el @@ -5,7 +5,7 @@ ;; Author: Stefan Monnier <monnier@cs.yale.edu> ;; Keywords: pcl-cvs ;; Version: $Name: $ -;; Revision: $Id: pcl-cvs-util.el,v 1.26 2000/03/05 21:32:21 monnier Exp $ +;; Revision: $Id: pcvs-util.el,v 1.1 2000/03/11 03:42:30 monnier Exp $ ;; This file is part of GNU Emacs. @@ -172,7 +172,7 @@ Only some SEPARATOR will work properly." (mapconcat (lambda (str) (if (string-match "[\\\"]" str) - (concat "\"" (replace-regexps-in-string "[\\\"]" "\\\\\\&" str) "\"") + (concat "\"" (replace-regexp-in-string "[\\\"]" "\\\\\\&" str) "\"") str)) strings sep))) |