* lisp/gnus-art.el (gnus-article-mime-edit-article-setup): Fix typo.
authoryamaoka <yamaoka>
Fri, 30 Oct 1998 03:34:42 +0000 (03:34 +0000)
committeryamaoka <yamaoka>
Fri, 30 Oct 1998 03:34:42 +0000 (03:34 +0000)
* lisp/gnus-draft.el (gnus-draft-decoding-function): Use
`mime-edit-decode-buffer' simply as initial value.

lisp/gnus-art.el
lisp/gnus-draft.el

index 960a91e..7440357 100644 (file)
@@ -3011,7 +3011,7 @@ after replacing with the original article."
   (setq gnus-article-edit-done-function
        `(lambda (&rest args)
           (when (featurep 'font-lock)
-            (setq font-lockfont-lock-defaults-defaults nil)
+            (setq font-lock-defaults nil)
             (font-lock-mode 0))
           (mime-edit-exit)
           (let (case-fold-search)
index 49b9715..66e99ae 100644 (file)
 ;;; Utility functions
 
 (defcustom gnus-draft-decoding-function
-  (function
-   (lambda ()
-     (mime-edit-decode-buffer nil)
-     (eword-decode-header)
-     ))
+  #'mime-edit-decode-buffer
   "*Function called to decode the message from network representation."
   :group 'gnus-agent
   :type 'function)