Changeset 1034
- Timestamp:
- 07/08/07 20:56:42 (1 year ago)
- Files:
-
- 1.8.3/branches/devel/CHANGES.183 (modified) (1 diff)
- 1.8.3/branches/devel/game/txt/hlp/pennv183.hlp (modified) (1 diff)
- 1.8.3/branches/devel/src/attrib.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.3/branches/devel/CHANGES.183
r1008 r1034 78 78 common cases by Sketch and Javelin. 79 79 * Fixes to ANSI output where extra ^[[m were being sent. 80 * Default flags weren't getting set on some attributes in certain 81 cases. Report by Talvo. 80 82 * Fixes from 1.8.2p6 81 83 1.8.3/branches/devel/game/txt/hlp/pennv183.hlp
r1025 r1034 75 75 common cases by Sketch and Javelin. 76 76 * Fixes to ANSI output where extra ^[[m were being sent. 77 * Default flags weren't getting set on some attributes in certain 78 cases. Report by Talvo. 77 79 * Fixes from 1.8.2p6 78 80 1.8.3/branches/devel/src/attrib.c
r967 r1034 394 394 do { \ 395 395 ATTR *std = atr_match(AL_NAME((atr))); \ 396 if (std && ! (flags) && !strcmp(AL_NAME(std), AL_NAME((atr)))) { \397 AL_FLAGS(atr) = AL_FLAGS(std) ; \396 if (std && !strcmp(AL_NAME(std), AL_NAME((atr)))) { \ 397 AL_FLAGS(atr) = AL_FLAGS(std) | flags; \ 398 398 } else { \ 399 399 AL_FLAGS(atr) = flags; \
