Added note to fixme comment to state that a function is relying on its current setup.

This commit is contained in:
Keenan Lang
2014-09-02 17:21:42 -05:00
parent 85936ff34c
commit 6d4e284ab1

View File

@@ -253,7 +253,11 @@ epicsShareAPI macPutValue(
/* handle NULL value case: if name was found, delete entry (may be
several entries at different scoping levels) */
if ( value == NULL ) {
/* FIXME: shouldn't be able to delete entries from lower scopes */
/*
* FIXME: shouldn't be able to delete entries from lower scopes
* NOTE: when this is changed, this functionality of removing
* a macro from all scopes will still be needed by iocshEnvClear
*/
while ( ( entry = lookup( handle, name, FALSE ) ) != NULL ) {
delete( handle, entry );