btmux-0.6-rc4/doc/
btmux-0.6-rc4/event/
btmux-0.6-rc4/game/
btmux-0.6-rc4/game/maps/
btmux-0.6-rc4/game/mechs/
btmux-0.6-rc4/game/text/help/
btmux-0.6-rc4/game/text/help/cat_faction/
btmux-0.6-rc4/game/text/help/cat_inform/
btmux-0.6-rc4/game/text/help/cat_misc/
btmux-0.6-rc4/game/text/help/cat_mux/
btmux-0.6-rc4/game/text/help/cat_mux/cat_commands/
btmux-0.6-rc4/game/text/help/cat_mux/cat_functions/
btmux-0.6-rc4/game/text/help/cat_templates/
btmux-0.6-rc4/game/text/wizhelp/
btmux-0.6-rc4/include/
btmux-0.6-rc4/misc/
btmux-0.6-rc4/python/
btmux-0.6-rc4/src/hcode/btech/
btmux-0.6-rc4/tree/
& space()
 
  Syntax: space(<count>)
 
  Returns the number of indicated spaces. If <count> is missing, 
  negative, or cannot be converted to a number, one space is returned. 
  This function is useful when you want to pass a single space (or 
  more than one) as a function to an argument, because normally 
  leading and trailing spaces are stripped from function arguments.
 
  Example:
  > say space(4)
  You say "    "
  > say edit(Foo bar bletch, space(), X)
  You say "FooXbarXbletch"
 
	Note: Don't use space() when an ljust(), rjust() or center() can 
  do the job better. It's ideal to lay things out so if you ever have 
  to go in and change wording, you won't have to adjust your space 
  functions.
 
  See Also: ljust(), rjust(), center()