(NSC_CONST,castr,meta_flags): Add new flag NSC_CONST to castr.

(ichr_ca,pchr_ca,intrchr_ca): Use it.
This commit is contained in:
Ron Koenderink 2005-10-28 12:35:36 +00:00
parent 01c248cb59
commit 445dfec9bc
2 changed files with 8 additions and 6 deletions

View file

@ -84,7 +84,8 @@ typedef char packed_nsc_cat;
enum {
NSC_DEITY = bit(0), /* access restricted to deity */
NSC_EXTRA = bit(1) /* computable from other selectors */
NSC_EXTRA = bit(1), /* computable from other selectors */
NSC_CONST = bit(2) /* field cannot be changed */
};
typedef unsigned char nsc_flags;