2001-01-13 23:00:00 ShengHuo ZHU <zsh@cs.rochester.edu>
authorShengHuo ZHU <zsh@cs.rochester.edu>
Sun, 14 Jan 2001 04:44:54 +0000 (04:44 +0000)
committerShengHuo ZHU <zsh@cs.rochester.edu>
Sun, 14 Jan 2001 04:44:54 +0000 (04:44 +0000)
* gpg.el (gpg-build-arg-list): Use copy-sequence.

contrib/ChangeLog
contrib/gpg.el

index 647125a..ff2e151 100644 (file)
@@ -1,3 +1,7 @@
+2001-01-13 23:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
+
+       * gpg.el (gpg-build-arg-list): Use copy-sequence.
+
 2000-12-19 22:00:00  ShengHuo ZHU  <zsh@cs.rochester.edu>
 
        * gpg.el (defalias): Use eval-and-compile.
index b6ce0dd..6c31159 100644 (file)
@@ -7,7 +7,7 @@
 ;; Keywords: crypto
 ;; Created: 2000-04-15
 
-;; $Id: gpg.el,v 1.8 2000/12/15 05:26:35 zsh Exp $
+;; $Id: gpg.el,v 1.9 2000/12/20 03:05:26 zsh Exp $
 
 ;; This file is NOT (yet?) part of GNU Emacs.
 
@@ -550,7 +550,7 @@ it are replaced by SUBSTITUTIONS.
 SUBSTITIONS is a list of (SYMBOL . SEXP) pairs, where SEXP is either a
 string (which is inserted literally), a list of strings (which are
 inserted as well), or nil, which means to insert nothing."
-  (let ((arglist (copy-list gpg-command-all-arglist)))
+  (let ((arglist (copy-sequence gpg-command-all-arglist)))
     (while template
       (let* ((templ (pop template))
             (repl (assoc templ substitutions))