1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/japanese/emacs-manual/files/PORT_TEXIFMT.MK
Satoshi Asami 7a96c39f50 o Fix checksum dependency to emacs20.
o Change port's texinfo format procedure more verbose one.  This also
     fixes the build problem on 4-current.

PR:		16357
Submitted by:	maintainer
2000-01-27 21:51:21 +00:00

17 lines
411 B
Makefile

;;; -*- Emacs-Lisp -*-
;;; PORT_TEXIFMT.MK --- for texinfo-format
;;; Code:
(defun port-texinfo-format ()
(let (obuf)
(find-file (expand-file-name PORT-TEXI))
(setq obuf (current-buffer))
(require 'texinfmt)
(texinfo-format-buffer t)
(set-buffer-file-coding-system 'iso-2022-jp)
(save-buffer)
(kill-buffer (current-buffer))
(kill-buffer obuf)))
;;; PORT_TEXIFMT.MK ends here