Changeset 1127
- Timestamp:
- 10/05/07 20:20:30 (1 year ago)
- Files:
-
- 1.8.3/branches/devel/CHANGES.182 (modified) (1 diff)
- 1.8.3/branches/devel/src/bsd.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.3/branches/devel/CHANGES.182
r1120 r1127 13 13 14 14 ========================================================================== 15 16 Version 1.8.2 patchlevel 8 ??? ??, 200? 17 18 Minor changes: 19 * 'make versions' now provides some feedback. 20 21 Fixes: 22 * width() and height() do not return 0 when set to invalid input. 23 By Talvo. 15 24 16 25 Version 1.8.2 patchlevel 7 October 6, 2007 1.8.3/branches/devel/src/bsd.c
r1124 r1127 4044 4044 if (!*args[0]) 4045 4045 safe_str(T("#-1 FUNCTION REQUIRES ONE ARGUMENT"), buff, bp); 4046 else if ((match = lookup_desc(executor, args[0])) )4046 else if ((match = lookup_desc(executor, args[0])) && match->width > 0) 4047 4047 safe_integer(match->width, buff, bp); 4048 4048 else if (args[1]) … … 4057 4057 if (!*args[0]) 4058 4058 safe_str(T("#-1 FUNCTION REQUIRES ONE ARGUMENT"), buff, bp); 4059 else if ((match = lookup_desc(executor, args[0])) )4059 else if ((match = lookup_desc(executor, args[0])) && match->height > 0) 4060 4060 safe_integer(match->height, buff, bp); 4061 4061 else if (args[1])
