1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

(datearg): Separate date from time with comma, not space,

to avoid CVS 1.5 bug.
(CVSROOT): Don't abort if unset and if repository is an absolute pathname.
This commit is contained in:
Paul Eggert 1995-07-08 18:44:04 +00:00
parent be3e4bb1b8
commit fdb3286ede

View File

@ -12,7 +12,7 @@
# Author: Paul Eggert <eggert@twinsun.com>
# $Id: rcs2log,v 1.24 1995/06/28 01:47:55 eggert Exp eggert $
# $Id: rcs2log,v 1.25 1995/07/07 22:47:57 eggert Exp eggert $
# Copyright 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
@ -158,7 +158,8 @@ case $rlog_options in
}
}
}
printf "%d/%02d/%02d %02d:%02d:%02d\n", year,i+1,dd,hh,mm,ss
# Output comma instead of space to avoid CVS 1.5 bug.
printf "%d/%02d/%02d,%02d:%02d:%02d\n", year,i+1,dd,hh,mm,ss
exit
}
'
@ -179,7 +180,7 @@ else
rlog='cvs log'
repository=`sed 1q <CVS/Repository` || exit
test ! -f CVS/Root || CVSROOT=`cat <CVS/Root` || exit
case ${CVSROOT?} in
case $CVSROOT in
*:/*)
# remote repository
;;
@ -187,7 +188,7 @@ else
# local repository
case $repository in
/*) ;;
*) repository=$CVSROOT/$repository
*) repository=${CVSROOT?}/$repository
esac
if test ! -d "$repository"
then