summaryrefslogtreecommitdiff
path: root/lisp/pcvs-util.el
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2000-03-17 10:07:00 +0000
committerDave Love <fx@gnu.org>2000-03-17 10:07:00 +0000
commit0aa864c5d0e16db283ec322b4b27dde146d22110 (patch)
tree42718fe1536e88dc2392d463c762c4e2adc63bd7 /lisp/pcvs-util.el
parent44000689c24f57fbec2c621a12fba8240736bf01 (diff)
downloademacs-0aa864c5d0e16db283ec322b4b27dde146d22110.tar.gz
(cvs-strings->string): Rename
replace-regexps-in-string.
Diffstat (limited to 'lisp/pcvs-util.el')
-rw-r--r--lisp/pcvs-util.el4
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)))