diff options
| author | Paul Eggert | 1996-10-13 05:59:42 +0000 |
|---|---|---|
| committer | Paul Eggert | 1996-10-13 05:59:42 +0000 |
| commit | 6fbe22d8650655d3c758b26c77d449345726d5b6 (patch) | |
| tree | 0cf832971c91853e6ef7245a852f677d114c5e5b /lib-src | |
| parent | ae1cc0311c2441df6518cf88c84bad2fbd8f087f (diff) | |
| download | emacs-6fbe22d8650655d3c758b26c77d449345726d5b6.tar.gz emacs-6fbe22d8650655d3c758b26c77d449345726d5b6.zip | |
(datearg): Use the empty string, not '-d>1970-01-01', to extract all
revisions, since some hosts reject 1970-01-01 when east of UTC.
(date): Remove.
Diffstat (limited to 'lib-src')
| -rwxr-xr-x | lib-src/rcs2log | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib-src/rcs2log b/lib-src/rcs2log index a2a9fced295..e68c5616e22 100755 --- a/lib-src/rcs2log +++ b/lib-src/rcs2log | |||
| @@ -12,7 +12,7 @@ | |||
| 12 | 12 | ||
| 13 | # Author: Paul Eggert <eggert@twinsun.com> | 13 | # Author: Paul Eggert <eggert@twinsun.com> |
| 14 | 14 | ||
| 15 | # $Id: rcs2log,v 1.32 1996/09/30 22:15:13 eggert Exp eggert $ | 15 | # $Id: rcs2log,v 1.33 1996/10/12 17:24:45 eggert Exp eggert $ |
| 16 | 16 | ||
| 17 | # Copyright 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. | 17 | # Copyright 1992, 1993, 1994, 1995, 1996 Free Software Foundation, Inc. |
| 18 | 18 | ||
| @@ -126,7 +126,6 @@ month_data=' | |||
| 126 | # what's already in ChangeLog; it's the user's responsibility to remove them. | 126 | # what's already in ChangeLog; it's the user's responsibility to remove them. |
| 127 | case $rlog_options in | 127 | case $rlog_options in |
| 128 | '') | 128 | '') |
| 129 | date=1970-01-01 | ||
| 130 | if test -s "$changelog" | 129 | if test -s "$changelog" |
| 131 | then | 130 | then |
| 132 | e=' | 131 | e=' |
| @@ -147,10 +146,9 @@ case $rlog_options in | |||
| 147 | ' | 146 | ' |
| 148 | d=`$AWK "$e" <"$changelog"` || exit | 147 | d=`$AWK "$e" <"$changelog"` || exit |
| 149 | case $d in | 148 | case $d in |
| 150 | ?*) date=$d | 149 | ?*) datearg="-d>$d" |
| 151 | esac | 150 | esac |
| 152 | fi | 151 | fi |
| 153 | datearg="-d>$date" | ||
| 154 | esac | 152 | esac |
| 155 | 153 | ||
| 156 | # Use TZ specified by ChangeLog local variable, if any. | 154 | # Use TZ specified by ChangeLog local variable, if any. |