function blocal_var_exists

Synopsis

Determine whether or not a buffer-local variable exists

Usage

Int_Type blocal_var_exists (String_Type name)

Description

The blocal_var_exists function returns non-zero if the specified buffer-local variable exists. It returns zero of the variable does not exists.

See also

get_blocal_var , create_blocal_var , set_blocal_var

function 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

function 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

function 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