aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorMiles Bader2006-03-19 19:43:57 +0000
committerMiles Bader2006-03-19 19:43:57 +0000
commit292203c9ef2ab5c1bb349b83132c9a51d3dfb274 (patch)
tree50a77103a19396afa0417287910e49e0e1599c31 /lib-src
parentd02f8c18d1f1ecd3389a9290125f840ec54f4054 (diff)
parent531bedc37c5e0b060c51565ba3a17ef471c2b510 (diff)
downloademacs-292203c9ef2ab5c1bb349b83132c9a51d3dfb274.tar.gz
emacs-292203c9ef2ab5c1bb349b83132c9a51d3dfb274.zip
Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-46
Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 157-163) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 58-61) - Update from CVS
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog5
-rwxr-xr-xlib-src/vcdiff4
2 files changed, 7 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index e4e74030200..f59f7296359 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,8 @@
12006-03-18 Andre Spiegel <spiegel@gnu.org>
2
3 * vcdiff: Use "echo" as a default for $echo, otherwise we'll
4 execute $DIFF twice, and once with the wrong options.
5
12006-02-23 Claudio Fontana <claudio@gnu.org> 62006-02-23 Claudio Fontana <claudio@gnu.org>
2 7
3 * Makefile.in (install, uninstall): Add DESTDIR variable to 8 * Makefile.in (install, uninstall): Add DESTDIR variable to
diff --git a/lib-src/vcdiff b/lib-src/vcdiff
index 52fdaee0f7f..2cba89df421 100755
--- a/lib-src/vcdiff
+++ b/lib-src/vcdiff
@@ -29,7 +29,7 @@ usage="$0: Usage: vcdiff [--brief] [-q] [-r<sid1>] [-r<sid2>] [diffopts] sccsfil
29 29
30PATH=$PATH:/usr/ccs/bin:/usr/sccs:/usr/xpg4/bin # common SCCS hangouts 30PATH=$PATH:/usr/ccs/bin:/usr/sccs:/usr/xpg4/bin # common SCCS hangouts
31 31
32echo= 32echo="echo"
33sid1= sid2= 33sid1= sid2=
34 34
35for f 35for f
@@ -96,7 +96,7 @@ do
96 workfile=$rev2 96 workfile=$rev2
97 esac 97 esac
98 then 98 then
99 $echo $DIFF $options $sid1 $sid2 $workfile >&2 99 $echo $DIFF $options $rev1 $workfile >&2
100 $DIFF $options $rev1 $workfile 100 $DIFF $options $rev1 $workfile
101 s=$? 101 s=$?
102 fi 102 fi