This is the mail archive of the guile@sourceware.cygnus.com mailing list for the Guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Name change: SCMWORD --> scm_word_t


Mikael Djurfeldt <mdj@mdj.nada.kth.se> writes:

> BTW, isn't there a better name than SCM_WORD, a name less connected
> with a certain size of data?  (Can't think of one myself right now.)

OK, how about "bits": We use the macro whenever we want access to the
bits of an SCM value:

  SCM_BITS (x)
  SCM_CARBITS (x)
  SCM_SCM (x)

as a subsitute for the current

  SCM_ASWORD (x)
  SCM_CARW (x)
  SCM_ASSCM (x)

?

(I'm pretty eager at changing this, because a lot of other packages
 depends on this change (like GOOPS), and I like to have them working
 against the current Guile.)

/mdj

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]