add_list


(add_list  string)

This function adds the string to, or modifies it in, the currently active DCL list.

Arguments

string  the string to be added to, or to be modified in, the currently active DCL list (depends on preceding (start_list) call)

Return

the string if successful, or NIL

Example

(setq lst '("a" "b" "C"))
(start_list "dcl_list")
(mapcar 'add_list lst) 
(end_list)

(start_list "dcl_list" 2 0)
(add_list "c")
(end_list)

Remarks

DCL key strings are case-sensitive;
see (start_list) and (end_list) functions



©  Bricsys NV. All rights reserved.