From: Paul Eggert Date: Wed, 25 Aug 1993 19:33:07 +0000 (+0000) Subject: Change /{/ to /\{/ for Posix compatibility; otherwise, HP awk complains. X-Git-Tag: emacs-19.34~11197 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=85acbe0ab885e6bc8a27bac9876b2789c2b991bf;p=emacs.git Change /{/ to /\{/ for Posix compatibility; otherwise, HP awk complains. --- diff --git a/lib-src/rcs2log b/lib-src/rcs2log index cd539752a31..4f3f56d10e7 100755 --- a/lib-src/rcs2log +++ b/lib-src/rcs2log @@ -12,7 +12,7 @@ # Author: Paul Eggert -# $Id: rcs2log,v 1.12 1993/05/29 06:22:48 rms Exp eggert $ +# $Id: rcs2log,v 1.13 1993/08/09 22:06:00 eggert Exp eggert $ # Copyright 1992, 1993 Free Software Foundation, Inc. @@ -324,7 +324,7 @@ awk ' newclumpname = "" sep = "\n" if (date == "") sep = "" - if (newlog ~ /^{[^ }]*}[ ]/) { + if (newlog ~ /^\{[^ }]*}[ ]/) { i = index(newlog, "}") newclumpname = substr(newlog, 1, i) while (substr(newlog, i+1) ~ /^[ ]/) i++