From b42f693ccb6df0adf0f509ae8766a51f5bfd4cf5 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Fri, 17 Mar 2000 10:07:00 +0000 Subject: [PATCH] (cvs-strings->string): Rename replace-regexps-in-string. --- lisp/pcvs-util.el | 4 ++-- 1 file 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 ;; 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))) -- 2.11.4.GIT