1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 12:28:22 +01:00

fixed bug with infinite loop in some circumstances in fitText() in WINGs

This commit is contained in:
dan
2004-11-06 20:20:05 +00:00
parent acc868d91d
commit 9f89695c48
3 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,3 @@
- Removed --with-appsdir option and replaced it with --with-gnustepdir. Also,
default installation path (for non GNUstep users) is now $(prefix)/bin
Changes since version 0.91.0:
.............................
- fixed crash with info panel and alt-tabbing
@@ -11,6 +7,9 @@ Changes since version 0.91.0:
- fixed issues with compiling on Solaris with openwin
- reduced minimum required version number for the Xft library to 2.1.0
- fixed some compilation issues with gcc-2.9x
- Removed --with-appsdir option and replaced it with --with-gnustepdir. Also,
default installation path (for non GNUstep users) is now $(prefix)/bin
- fixed bug with infinite loop in some circumstances in fitText() in WINGs
Changes since version 0.90.0:

View File

@@ -107,7 +107,7 @@ fitText(char *text, WMFont *font, int width, int wrap)
int i, w, beforecrlf, word1, word2;
/* text length before first cr/lf */
beforecrlf = strcspn(text, "\n\r");
beforecrlf = strcspn(text, "\n");
if (!wrap || beforecrlf==0)
return beforecrlf;
@@ -180,7 +180,7 @@ fitText(char *text, WMFont *font, int width, int wrap)
i = j;
}
} else {
i = strcspn(text, "\n\r");
i = strcspn(text, "\n");
}
return i;
}

View File

@@ -834,6 +834,7 @@ AC_ARG_WITH(appspath,
[ --with-gnustepdir=PATH specify the directory for GNUstep applications], appspath=$withval )
if test "$appspath$GNUSTEP_LOCAL_ROOT" = ""; then
wprefs_base_dir=${prefix}
wprefs_datadir="${datadir}/WPrefs"
wprefs_bindir="${bindir}"
else
@@ -844,9 +845,9 @@ else
gnustepdir=`echo $gnustepdir | sed -e 's|^prefix|${prefix}|'`
fi
xx=$gnustepdir/Applications
wprefs_datadir=$xx/WPrefs.app
wprefs_bindir=$xx/WPrefs.app
wprefs_base_dir=$gnustepdir/Applications
wprefs_datadir=$wprefs_base_dir/WPrefs.app
wprefs_bindir=$wprefs_base_dir/WPrefs.app
fi
AC_SUBST(wprefs_datadir)
@@ -1084,7 +1085,7 @@ echo "Window Maker was configured as follows:"
echo
echo "Installation path prefix : $prefix"
echo "Installation path for binaries : $_bindir"
echo "Installation path for WPrefs.app : $wprefs_bindir" | sed -e 's|\${exec_prefix}|'"$exec_prefix|" -e 's|\${prefix}|'"$prefix|"
echo "Installation path for WPrefs.app : $wprefs_base_dir" | sed -e 's|\${prefix}|'"$prefix|"
echo "Supported graphic format libraries : $supported_gfx"
echo "Use assembly routines for wrlib : $asm_support"
echo "Use inline MMX(tm) x86 assembly : $mmx_support"