Changes committed gnus/lisp (ChangeLog pgg.el)

"TSUCHIYA Masatoshi" <[email protected]> Tue, 22 Oct 2002 16:52:34 +0200
Newsgroups gmane.emacs.gnus.patches
Message-ID <[email protected]>
Modified: ChangeLog pgg.el

(pgg-snarf-keys): Do not refer unbinded local variables.


Index: ChangeLog
diff -u gnus/lisp/ChangeLog:6.1639 gnus/lisp/ChangeLog:6.1640
--- ChangeLog:6.1639	Tue Oct 22 12:01:26 2002
+++ ChangeLog	Tue Oct 22 16:52:33 2002
@@ -1,3 +1,7 @@
+2002-10-22  TSUCHIYA Masatoshi  <[email protected]>
+
+	* pgg.el (pgg-snarf-keys): Do not refer unbinded local variables.
+
 2002-10-22  Simon Josefsson  <[email protected]>
 
 	* pgg.el (pgg-encrypt, pgg-decrypt, pgg-sign, pgg-verify) 
Index: pgg.el
diff -u gnus/lisp/pgg.el:6.7 gnus/lisp/pgg.el:6.8
--- pgg.el:6.7	Tue Oct 22 12:01:26 2002
+++ pgg.el	Tue Oct 22 16:52:33 2002
@@ -305,7 +305,7 @@
 (defun pgg-snarf-keys ()
   "Import public keys in the current buffer."
   (interactive "")
-  (pgg-snarf-keys-region (or start (point-min)) (or end (point-max))))
+  (pgg-snarf-keys-region (point-min) (point-max)))
 
 (defun pgg-lookup-key (string &optional type)
   (pgg-invoke "lookup-key" (or pgg-scheme pgg-default-scheme) string type))