1999-08-31 Richard Hult <rhult@hem2.passagen.se>

* configure.in (ALL_LINGUAS): Added sv.

1999-08-30  Norbert Warmuth  <nwarmuth@privat.circular.de>
This commit is contained in:
Miguel de Icaza 1999-08-31 23:59:48 +00:00
parent 13278a507f
commit d95c6432e6
3 changed files with 11 additions and 5 deletions

2
BUGS
View File

@ -7,7 +7,7 @@ bugs.gnome.org:
874, 931, 956/1126, 1022.1, 1045, 1047, 904, 1329,
1468, 1508, 1750
Non-essential or feature: 779?, 448, 1133, 1121, 1122, 1251
Look at bug yourself: 1613, 1458, 1773
Look at bug yourself: 1773
1006: Try going to 'ftp://ftp.cs.cuc.edu/' and then clicking on the
root window. I think the pointer grab stays around or

View File

@ -1,3 +1,9 @@
1999-08-31 Federico Mena Quintero <federico@redhat.com>
* extfs/uzip.in: Handle filenames with spaces better. Thanks to
Spyridon Papadimitriou <Spyridon_Papadimitriou@gs91.sp.cs.cmu.edu>
for the patch.
1999-08-30 Miguel de Icaza <miguel@nuclecu.unam.mx>
* ftpfs.c (translate_path): Remove static buffer from here.

View File

@ -21,7 +21,7 @@ mczipfs_list ()
DOZIPINFO=no
if test -n "$XZIPINFO"; then
DOZIPINFO=
$XZIPINFO -l "$1" | @AWK@ -v uid=${UID-0} -v zipfile=$1 -v xunzip=${XUNZIP-unzip} '
$XZIPINFO -l "$1" | @AWK@ -v uid=${UID-0} -v zipfile="$1" -v xunzip=${XUNZIP-unzip} '
/^Archive/ { next }
/^[0-9]*\ file/ { next }
/unx/ {
@ -107,7 +107,7 @@ mczipfs_copyin ()
mczipfs_copyout ()
{
$XUNZIP -p "$1" "$2" > $3 2>/dev/null
$XUNZIP -p "$1" "$2" > "$3" 2>/dev/null
}
mczipfs_rm ()
@ -128,7 +128,7 @@ case "$1" in
rm) mczipfs_rm "$2" "$3" ; exit 0;;
rmdir) mczipfs_rmdir "$2" "$3" ; exit 0;;
mkdir) mczipfs_mkdir "$2" "$3" ; exit 0;;
copyin) mczipfs_copyin "$2" "$3" $4 ; exit 0;;
copyout) mczipfs_copyout "$2" "$3" $4 ; exit 0;;
copyin) mczipfs_copyin "$2" "$3" "$4" ; exit 0;;
copyout) mczipfs_copyout "$2" "$3" "$4" ; exit 0;;
esac
exit 1