@@ -333,12 +333,11 @@ other values or expressions could be used.
333
333
334
334
<pre >
335
335
<i >echo-intrinsic:</i >
336
- echo <i >expression</i >
337
- echo <i >expression-list-two-or-more</i >
336
+ echo <i >expression-list</i >
338
337
339
338
<i >expression-list-two-or-more:</i >
340
- <i >expression</i > , < i >expression</ i >
341
- <i >expression-list-two-or-more </i > , <i >expression</i >
339
+ <i >expression</i >
340
+ <i >expression-list</i > , <i >expression</i >
342
341
</pre >
343
342
344
343
** Defined elsewhere**
@@ -508,25 +507,21 @@ exit;
508
507
509
508
<pre >
510
509
<i >isset-intrinsic:</i >
511
- isset ( <i >expression -list-one-or-more </i > )
510
+ isset ( <i >variable -list</i > )
512
511
513
- <i >expression -list-one-or-more </i >:
514
- <i >expression </i >
515
- <i >expression -list-one-or-more </i > , <i >expression </i >
512
+ <i >variable -list</i >:
513
+ <i >variable </i >
514
+ <i >variable -list</i > , <i >variable </i >
516
515
</pre >
517
516
518
517
** Defined elsewhere**
519
518
520
- * [ * expression* ] ( #general-6 )
521
-
522
- ** Constraints**
523
-
524
- Each * expression* must designate a variable.
519
+ * [ * variable* ] ( #variables )
525
520
526
521
** Semantics**
527
522
528
523
This intrinsic returns ` TRUE ` if all the variables designated by
529
- * expression * s are set and their values are not ` NULL ` . Otherwise, it
524
+ * variables * s are set and their values are not ` NULL ` . Otherwise, it
530
525
returns ` FALSE ` .
531
526
532
527
If this intrinsic is used with an expression that designate a [ dynamic
@@ -708,21 +703,17 @@ $a > $b ? print "..." : print "...";
708
703
709
704
<pre >
710
705
<i >unset-intrinsic:</i >
711
- unset ( <i >expression -list-one-or-more </i > )
706
+ unset ( <i >variable -list</i > )
712
707
</pre >
713
708
714
709
** Defined elsewhere**
715
710
716
- * [ * expression-list-one-or-more* ] ( #isset )
717
-
718
- ** Constraints**
719
-
720
- Each * expression* must designate a variable.
711
+ * [ * variable-list* ] ( #isset )
721
712
722
713
** Semantics**
723
714
724
715
This intrinsic [ unsets] ( 07-variables.md#general ) the variables designated by each
725
- * expression * in * expression -list-one-or-more * . No value is returned. An
716
+ * variable * in * variable -list* . No value is returned. An
726
717
attempt to unset a non-existent variable (such as a non-existent element
727
718
in an array) is ignored.
728
719
0 commit comments