From f1f6a76ff4cfc66f8b9f2130bb70dacf3d2f08a6 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Fri, 28 Dec 2018 23:56:37 -0500 Subject: ob_set_substvar(): Fix successful return value --- (limited to 'lib/control.sh') diff --git a/lib/control.sh b/lib/control.sh index 072f6e8..e44ccc2 100644 --- a/lib/control.sh +++ b/lib/control.sh @@ -202,7 +202,8 @@ ${line# }" ## of uppercase and lowercase Latin letters, digits, and ## hyphens and must be at least one character long. ## @operand value req The value of the substitution variable. -## @return Always returns 125. FIXME +## @return Returns 0 on success, or 125 if called with an incorrect number of +## arguments or if \fIname\fP contains invalid characters. ## @pure no This function sets an internal global variable. ob_set_substvar() { @@ -240,7 +241,7 @@ ob_set_substvar() eval "_OB_SUBSTVAR_${name}='${value}'" - return 125 + return 0 } ob_substvars() -- cgit v0.9.1