ldmud-3.4.1/doc/
ldmud-3.4.1/doc/efun.de/
ldmud-3.4.1/doc/efun/
ldmud-3.4.1/doc/man/
ldmud-3.4.1/doc/other/
ldmud-3.4.1/mud/
ldmud-3.4.1/mud/heaven7/
ldmud-3.4.1/mud/lp-245/
ldmud-3.4.1/mud/lp-245/banish/
ldmud-3.4.1/mud/lp-245/doc/
ldmud-3.4.1/mud/lp-245/doc/examples/
ldmud-3.4.1/mud/lp-245/doc/sefun/
ldmud-3.4.1/mud/lp-245/log/
ldmud-3.4.1/mud/lp-245/obj/Go/
ldmud-3.4.1/mud/lp-245/players/lars/
ldmud-3.4.1/mud/lp-245/room/death/
ldmud-3.4.1/mud/lp-245/room/maze1/
ldmud-3.4.1/mud/lp-245/room/sub/
ldmud-3.4.1/mud/lp-245/secure/
ldmud-3.4.1/mud/morgengrauen/
ldmud-3.4.1/mud/morgengrauen/lib/
ldmud-3.4.1/mud/sticklib/
ldmud-3.4.1/mud/sticklib/src/
ldmud-3.4.1/mudlib/uni-crasher/
ldmud-3.4.1/pkg/
ldmud-3.4.1/pkg/debugger/
ldmud-3.4.1/pkg/diff/
ldmud-3.4.1/pkg/misc/
ldmud-3.4.1/src/autoconf/
ldmud-3.4.1/src/hosts/
ldmud-3.4.1/src/hosts/GnuWin32/
ldmud-3.4.1/src/hosts/amiga/
ldmud-3.4.1/src/hosts/win32/
ldmud-3.4.1/src/ptmalloc/
ldmud-3.4.1/src/util/
ldmud-3.4.1/src/util/erq/
ldmud-3.4.1/src/util/indent/hosts/next/
ldmud-3.4.1/src/util/xerq/
ldmud-3.4.1/src/util/xerq/lpc/
ldmud-3.4.1/src/util/xerq/lpc/www/
ldmud-3.4.1/test/t-030925/
ldmud-3.4.1/test/t-040413/
ldmud-3.4.1/test/t-041124/
REMOVED EFUN
SYNOPSIS
        string file_name()
        string file_name(object ob)

DESCRIPTION
        Get the name of an object <ob> or, if no argument is given, of
        the current object.

        This name is the name under which the object is stored in the
        muds object table. It is initialised at the creation of the
        object such that blueprints are named after the file they are
        compiled from (without the trailing '.c'), and clones receive
        the name of their blueprint, extended by '#' followed by
        a unique non-negative number. These rules also apply to
        virtual objects - the real name/type of virtual objects
        is ignored.

        The name of an object can be changed with rename_object(), and
        object_name() will reflect any of these changes.

        The returned name always begins with '/' (absolute path),
        except when the parser runs in COMPAT mode.

EXAMPLES
                find_object(file_name(ob)) == ob

        This is guaranteed to be true for all objects ob that are not
        destructed.

HISTORY
        In LDMud 3.2.6 renamed to object_name(), this old name is
        available as alias.
        Since LDMud 3.2.9, not available if driver is compiled without
          USE_DEPRECATED.
        Removed in LDMud 3.3 .

SEE ALSO
        clone_object(E), load_name(E), load_object(E), find_object(E),
        program_name(E), rename_object(E), object_name(E)