Next Previous Contents

6. Buffer-Local Variable Functions

6.1 create_blocal_var

Synopsis

create_blocal_var

Usage

Void create_blocal_var (String name);

Description

This function is used to create a buffer local variable named name. A buffer local variable is a variable whose value is local to the current buffer.

See Also

get_blocal_var, set_blocal_var

6.2 get_blocal_var

Synopsis

get_blocal_var

Usage

get_blocal_var (String name);

Description

This function returns the value of the buffer local variable specified by name.

See Also

set_blocal_var, create_blocal_var

6.3 set_blocal_var

Synopsis

set_blocal_var

Usage

Void set_blocal_var (val, String v);

Description

This function sets the value of the buffer local variable with name v to value val. The buffer local variable specified by v must have been previously created by the create_blocal_var function. val must have the type that was declared when create_blocal_var was called.

See Also

get_blocal_var, create_blocal_var


Next Previous Contents