Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CFE-2724: Removed incorrect claim that arglist attribute preserve spaces #3082

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions reference/promise-types/commands.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,9 @@ So in the example above the command would be:
**Description:** Allows to separate the arguments to the command from the
command itself, using an slist.

As with `args`, it is convenient to separate command and arguments.
With `arglist` you can use a slist directly instead of having to
provide a single string as with `args`. That's particularly useful
when there are embedded spaces and quotes in your arguments, but also
when you want to get them directly from a slist without going through
`join()` or other functions.
As with `args`, it is convenient to separate command and arguments. With
`arglist` you can use a slist directly instead of having to provide a single
string as with `args`.

The `arglist` is **appended** to `args` if that's defined, to preserve
backwards compatibility.
Expand Down
Loading