Function: bdf-write-cache

bdf-write-cache is a byte-compiled function defined in ps-bdf.el.gz.

Signature

(bdf-write-cache)

Documentation

Write out cached information of BDF font file to a file.

The variable bdf-cache-file holds the cache file name. The file is written if and only if the file already exists and writable.

Source Code

;; Defined in /usr/src/emacs/lisp/ps-bdf.el.gz
(defun bdf-write-cache ()
  "Write out cached information of `BDF' font file to a file.
The variable `bdf-cache-file' holds the cache file name.
The file is written if and only if the file already exists and writable."
  (and bdf-cache
       (file-exists-p bdf-cache-file)
       (file-writable-p bdf-cache-file)
       (write-region (format "(setq bdf-cache '%S)\n" bdf-cache)
		     nil bdf-cache-file)))