Skip to content
Snippets Groups Projects
Commit 66deaba2 authored by Attila Lendvai's avatar Attila Lendvai
Browse files

add &rest args to UNIONF and NUNIONF to support the keyword args of UNION and...

add &rest args to UNIONF and NUNIONF to support the keyword args of UNION and NUNION (suggested by Andrew Philpot)
parent bbbdc92b
No related branches found
No related tags found
No related merge requests found
......@@ -103,11 +103,11 @@ argument.")
"Modify-macro for NCONC. Concatenates LISTS to place designated by the first
argument.")
(define-modify-macro unionf (list) union
(define-modify-macro unionf (list &rest args) union
"Modify-macro for UNION. Saves the union of LIST and the contents of the
place designated by the first argument to the designated place.")
(define-modify-macro nunionf (list) nunion
(define-modify-macro nunionf (list &rest args) nunion
"Modify-macro for NUNION. Saves the union of LIST and the contents of the
place designated by the first argument to the designated place. May modify
either argument.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment