From 426b208db5dcb6c7b153d61ec26fc484b30dae85 Mon Sep 17 00:00:00 2001 From: neil Date: Thu, 22 Dec 2016 23:35:29 +0000 Subject: [PATCH] Documented GVF_SAVE_VAR alongside other flags, and removed a query/doubt about its affects (I checked the behaviour on OS3.9). git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@53092 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/dos/deletevar.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rom/dos/deletevar.c b/rom/dos/deletevar.c index 66c50e0c34..77afa7dfbe 100644 --- a/rom/dos/deletevar.c +++ b/rom/dos/deletevar.c @@ -1,5 +1,5 @@ /* - Copyright © 1995-2013, The AROS Development Team. All rights reserved. + Copyright © 1995-2016, The AROS Development Team. All rights reserved. $Id$ Desc: DeleteVar() - Deletes a local or environmental variable. @@ -18,7 +18,7 @@ /* SYNOPSIS */ AROS_LHA(CONST_STRPTR, name, D1), - AROS_LHA(ULONG , flags, D2), + AROS_LHA(ULONG, flags, D2), /* LOCATION */ struct DosLibrary *, DOSBase, 152, Dos) @@ -43,6 +43,7 @@ GVF_LOCAL_ONLY - delete a local variable. GVF_GLOBAL_ONLY - delete a global environment variable. + GVF_SAVE_VAR - delete a global variable permanently. RESULT If non-zero, the variable was deleted successfully, @@ -60,7 +61,6 @@ SEE ALSO INTERNALS - XXX: Find out whether GVF_SAVE_VAR does actually affect this function. *****************************************************************************/ { -- 2.11.4.GIT