(encrypt-insert-file-contents)
authorReiner Steib <Reiner.Steib@gmx.de>
Tue, 25 Oct 2005 18:58:27 +0000 (18:58 +0000)
committerReiner Steib <Reiner.Steib@gmx.de>
Tue, 25 Oct 2005 18:58:27 +0000 (18:58 +0000)
(encrypt-write-file-contents): Don't use `gnus-message'.

lisp/ChangeLog
lisp/encrypt.el

index c989922..394de17 100644 (file)
@@ -1,5 +1,8 @@
 2005-10-25  Reiner Steib  <Reiner.Steib@gmx.de>
 
+       * encrypt.el (encrypt-insert-file-contents)
+       (encrypt-write-file-contents): Don't use `gnus-message'.
+
        * mm-uu.el (mm-uu-verbatim-marks-extract): Add four start and end
        arguments.
        (mm-uu-type-alist): Add message-marks and insert-marks.  Pass
index 659c4b9..bbf631a 100644 (file)
@@ -126,8 +126,8 @@ Format example:
 
     (if outdata
        (progn
-         (gnus-message 9 "%s was decrypted with %s (cipher %s)"
-                       file (symbol-name method) cipher)
+         (message "%s was decrypted with %s (cipher %s)"
+                  file (symbol-name method) cipher)
          (delete-region (point-min) (point-max))
          (goto-char (point-min))
          (insert outdata))
@@ -172,8 +172,8 @@ Format example:
 
     (if outdata
        (progn
-         (gnus-message 9 "%s was encrypted with %s (cipher %s)"
-                       file (symbol-name method) cipher)
+         (message "%s was encrypted with %s (cipher %s)"
+                  file (symbol-name method) cipher)
          (delete-region (point-min) (point-max))
          (goto-char (point-min))
          (insert outdata)