From: Ben Pfaff Date: Wed, 21 Sep 2022 23:29:46 +0000 (-0700) Subject: docs: Improve example in DEFINE. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=753a8066d5573d208ab762d2456250c860fcf5a3;p=pspp docs: Improve example in DEFINE. --- diff --git a/doc/flow-control.texi b/doc/flow-control.texi index 2082e33803..370eddd27f 100644 --- a/doc/flow-control.texi +++ b/doc/flow-control.texi @@ -194,10 +194,11 @@ DESCRIPTIVES !vars. FREQUENCIES /VARIABLES=!vars. !ENDDEFINE. +* Initially define the 'vars' macro to analyze v1...v3. DEFINE !vars() v1 v2 v3 !ENDDEFINE. !commands -* We can redefine the variables macro to analyze different variables: +* Redefine 'vars' macro to analyze different variables. DEFINE !vars() v4 v5 !ENDDEFINE. !commands @end example