diff options
author | Paul Eggert <eggert@twinsun.com> | 1996-09-25 09:53:56 +0000 |
---|---|---|
committer | Paul Eggert <eggert@twinsun.com> | 1996-09-25 09:53:56 +0000 |
commit | 8a8d7ab6ae867e5067457d3ce16ba2de5b1c21f9 (patch) | |
tree | 6ad797e8fe2d8eb3af1ea06713cc03cb5a429aea /lib-src/=rcs2log | |
parent | 5727acb7d6131b3e9a7cb2c6aebec5ee7cabcdb3 (diff) | |
download | emacs-8a8d7ab6ae867e5067457d3ce16ba2de5b1c21f9.tar.gz |
(rlog_options): Use $rlog, not rlog, when deciding whether to append -zLT.
Diffstat (limited to 'lib-src/=rcs2log')
-rw-r--r-- | lib-src/=rcs2log | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib-src/=rcs2log b/lib-src/=rcs2log index 16d7a4cd1d1..3c92f9c84ca 100644 --- a/lib-src/=rcs2log +++ b/lib-src/=rcs2log @@ -12,7 +12,7 @@ # Author: Paul Eggert <eggert@twinsun.com> -# $Id: rcs2log,v 1.29 1996/08/24 21:11:14 erik Exp eggert $ +# $Id: rcs2log,v 1.30 1996/08/26 21:20:48 eggert Exp eggert $ # Copyright 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. @@ -153,12 +153,6 @@ case $rlog_options in datearg="-d>$date" esac -# Use rlog's -zLT option, if rlog supports it. -case `rlog -zLT 2>&1` in -*'unknown option'*) ;; -*) rlog_options=-zLT$nl$rlog_options -esac - # Use TZ specified by ChangeLog local variable, if any. if test -s "$changelog" then @@ -203,6 +197,12 @@ else esac fi +# Use $rlog's -zLT option, if $rlog supports it. +case `$rlog -zLT 2>&1` in +*'unknown option'*) ;; +*) rlog_options=-zLT$nl$rlog_options +esac + # With no arguments, examine all files under the RCS directory. case $# in 0) |