mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-13 16:38:14 +00:00
(nnmail-pathname-coding-system): Defvar when
compiling. (gnus-make-directory): Require nnmail.
This commit is contained in:
parent
75d2d89f51
commit
5eee36fab2
@ -1,5 +1,9 @@
|
||||
2001-01-04 Dave Love <fx@gnu.org>
|
||||
|
||||
* gnus-util.el (nnmail-pathname-coding-system): Defvar when
|
||||
compiling.
|
||||
(gnus-make-directory): Require nnmail.
|
||||
|
||||
* mm-decode.el (mm-inline-media-tests): Add
|
||||
image/x-portable-bitmap.
|
||||
(mm-get-image): Grok pbm.
|
||||
|
@ -32,7 +32,10 @@
|
||||
;;; Code:
|
||||
|
||||
(require 'custom)
|
||||
(eval-when-compile (require 'cl))
|
||||
(eval-when-compile
|
||||
(require 'cl)
|
||||
;; Fixme: this should be a gnus variable, not nnmail-.
|
||||
(defvar nnmail-pathname-coding-system))
|
||||
(require 'nnheader)
|
||||
(require 'time-date)
|
||||
|
||||
@ -531,6 +534,7 @@ Bind `print-quoted' and `print-readably' to t while printing."
|
||||
|
||||
(defun gnus-make-directory (directory)
|
||||
"Make DIRECTORY (and all its parents) if it doesn't exist."
|
||||
(require 'nnmail)
|
||||
(let ((file-name-coding-system nnmail-pathname-coding-system))
|
||||
(when (and directory
|
||||
(not (file-exists-p directory)))
|
||||
|
Loading…
Reference in New Issue
Block a user