Use fresh symbol for argument list

* rcirc.el (rcirc-define-command): Use make-symbol instead of gensym
This commit is contained in:
Philip Kaludercic
2021-09-07 11:03:36 +02:00
parent 4a0c0e5606
commit ec0e46d66b

View File

@@ -2479,7 +2479,7 @@ that, an interactive form can specified."
(insert "\\(.*?\\)")
(insert "[[:space:]]*\\'")
(buffer-string)))
(argument (gensym))
(argument (make-symbol "arglist"))
documentation
interactive-spec)
(when (stringp (car body))