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
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
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