mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-24 07:20:37 +00:00
(rlog_options): Use $rlog, not rlog, when deciding whether to append -zLT.
This commit is contained in:
parent
26c76ace8d
commit
f41c4842c0
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user