]> git.eshelyaron.com Git - emacs.git/commitdiff
Use fresh symbol for argument list
authorPhilip Kaludercic <philipk@posteo.net>
Tue, 7 Sep 2021 09:03:36 +0000 (11:03 +0200)
committerPhilip Kaludercic <philipk@posteo.net>
Tue, 7 Sep 2021 09:03:36 +0000 (11:03 +0200)
* rcirc.el (rcirc-define-command): Use make-symbol instead of gensym

lisp/net/rcirc.el

index 5236f96b09f5ecb251db95f9ca93a827c2a2500d..a3f87d43666e95eb6a76bebc09eb06d02815b2b3 100644 (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))