(Fpropertize): Add prototype.
[emacs.git] / lisp / textmodes / makeinfo.el
blobb4857e0d143acb522f7cbce2920e7fa1fe0ef4b6
1 ;;; makeinfo.el --- run makeinfo conveniently
3 ;; Copyright (C) 1991, 1993 Free Software Foundation, Inc.
5 ;; Author: Robert J. Chassell
6 ;; Maintainer: FSF
7 ;; Keywords: docs convenience
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Commentary:
28 ;;; The Texinfo mode `makeinfo' related commands are:
30 ;; makeinfo-region to run makeinfo on the current region.
31 ;; makeinfo-buffer to run makeinfo on the current buffer, or
32 ;; with optional prefix arg, on current region
33 ;; kill-compilation to kill currently running makeinfo job
34 ;; makeinfo-recenter-makeinfo-buffer to redisplay *compilation* buffer
36 ;;; Keybindings (defined in `texinfo.el')
38 ;; makeinfo bindings
39 ; (define-key texinfo-mode-map "\C-c\C-m\C-r" 'makeinfo-region)
40 ; (define-key texinfo-mode-map "\C-c\C-m\C-b" 'makeinfo-buffer)
41 ; (define-key texinfo-mode-map "\C-c\C-m\C-k" 'kill-compilation)
42 ; (define-key texinfo-mode-map "\C-c\C-m\C-l"
43 ; 'makeinfo-recenter-compilation-buffer)
45 ;;; Code:
47 ;;; Variables used by `makeinfo'
49 (require 'compile)
51 (defgroup makeinfo nil
52 "Run makeinfo conveniently"
53 :group 'docs)
56 (defcustom makeinfo-run-command "makeinfo"
57 "*Command used to run `makeinfo' subjob.
58 The name of the file is appended to this string, separated by a space."
59 :type 'string
60 :group 'makeinfo)
62 (defcustom makeinfo-options "--fill-column=70"
63 "*String containing options for running `makeinfo'.
64 Do not include `--footnote-style' or `--paragraph-indent';
65 the proper way to specify those is with the Texinfo commands
66 `@footnotestyle` and `@paragraphindent'."
67 :type 'string
68 :group 'makeinfo)
70 (require 'texinfo)
72 (defvar makeinfo-compilation-process nil
73 "Process that runs `makeinfo'. Should start out nil.")
75 (defvar makeinfo-temp-file nil
76 "Temporary file name used for text being sent as input to `makeinfo'.")
78 (defvar makeinfo-output-file-name nil
79 "Info file name used for text output by `makeinfo'.")
82 ;;; The `makeinfo' function definitions
84 (defun makeinfo-region (region-beginning region-end)
85 "Make Info file from region of current Texinfo file, and switch to it.
87 This command does not offer the `next-error' feature since it would
88 apply to a temporary file, not the original; use the `makeinfo-buffer'
89 command to gain use of `next-error'."
91 (interactive "r")
92 (let (filename-or-header
93 filename-or-header-beginning
94 filename-or-header-end)
95 ;; Cannot use `let' for makeinfo-temp-file or
96 ;; makeinfo-output-file-name since `makeinfo-compilation-sentinel'
97 ;; needs them.
99 (setq makeinfo-temp-file
100 (concat
101 (make-temp-file
102 (substring (buffer-file-name)
104 (or (string-match "\\.tex" (buffer-file-name))
105 (length (buffer-file-name)))))
106 ".texinfo"))
108 (save-excursion
109 (save-restriction
110 (widen)
111 (goto-char (point-min))
112 (let ((search-end (save-excursion (forward-line 100) (point))))
113 ;; Find and record the Info filename,
114 ;; or else explain that a filename is needed.
115 (if (re-search-forward
116 "^@setfilename[ \t]+\\([^ \t\n]+\\)[ \t]*"
117 search-end t)
118 (setq makeinfo-output-file-name
119 (buffer-substring (match-beginning 1) (match-end 1)))
120 (error
121 "The texinfo file needs a line saying: @setfilename <name>"))
123 ;; Find header and specify its beginning and end.
124 (goto-char (point-min))
125 (if (and
126 (prog1
127 (search-forward tex-start-of-header search-end t)
128 (beginning-of-line)
129 ;; Mark beginning of header.
130 (setq filename-or-header-beginning (point)))
131 (prog1
132 (search-forward tex-end-of-header nil t)
133 (beginning-of-line)
134 ;; Mark end of header
135 (setq filename-or-header-end (point))))
137 ;; Insert the header into the temporary file.
138 (write-region
139 (min filename-or-header-beginning region-beginning)
140 filename-or-header-end
141 makeinfo-temp-file nil nil)
143 ;; Else no header; insert @filename line into temporary file.
144 (goto-char (point-min))
145 (search-forward "@setfilename" search-end t)
146 (beginning-of-line)
147 (setq filename-or-header-beginning (point))
148 (forward-line 1)
149 (setq filename-or-header-end (point))
150 (write-region
151 (min filename-or-header-beginning region-beginning)
152 filename-or-header-end
153 makeinfo-temp-file nil nil))
155 ;; Insert the region into the file.
156 (write-region
157 (max region-beginning filename-or-header-end)
158 region-end
159 makeinfo-temp-file t nil)
161 ;; Run the `makeinfo-compile' command in the *compilation* buffer
162 (save-excursion
163 (makeinfo-compile
164 (concat makeinfo-run-command
166 makeinfo-options
167 " "
168 makeinfo-temp-file)
169 "Use `makeinfo-buffer' to gain use of the `next-error' command"
170 nil)))))))
172 ;;; Actually run makeinfo. COMMAND is the command to run.
173 ;;; ERROR-MESSAGE is what to say when next-error can't find another error.
174 ;;; If PARSE-ERRORS is non-nil, do try to parse error messages.
175 (defun makeinfo-compile (command error-message parse-errors)
176 (let ((buffer
177 (compile-internal command error-message nil
178 (and (not parse-errors)
179 ;; If we do want to parse errors, pass nil.
180 ;; Otherwise, use this function, which won't
181 ;; ever find any errors.
182 (lambda (&rest ignore)
183 (setq compilation-error-list nil))))))
184 (set-process-sentinel (get-buffer-process buffer)
185 'makeinfo-compilation-sentinel)))
187 ;; Delete makeinfo-temp-file after processing is finished,
188 ;; and visit Info file.
189 ;; This function is called when the compilation process changes state.
190 ;; Based on `compilation-sentinel' in compile.el
191 (defun makeinfo-compilation-sentinel (proc msg)
192 (compilation-sentinel proc msg)
193 (if (and makeinfo-temp-file (file-exists-p makeinfo-temp-file))
194 (delete-file makeinfo-temp-file))
195 ;; Always use the version on disk.
196 (let ((buffer (get-file-buffer makeinfo-output-file-name)))
197 (if buffer
198 (with-current-buffer buffer
199 (revert-buffer t t))
200 (setq buffer (find-file-noselect makeinfo-output-file-name)))
201 (if (window-dedicated-p (selected-window))
202 (switch-to-buffer-other-window buffer)
203 (switch-to-buffer buffer)))
204 (goto-char (point-min)))
206 (defun makeinfo-buffer ()
207 "Make Info file from current buffer.
209 Use the \\[next-error] command to move to the next error
210 \(if there are errors\)."
212 (interactive)
213 (cond ((null buffer-file-name)
214 (error "Buffer not visiting any file"))
215 ((buffer-modified-p)
216 (if (y-or-n-p "Buffer modified; do you want to save it? ")
217 (save-buffer))))
219 ;; Find and record the Info filename,
220 ;; or else explain that a filename is needed.
221 (save-excursion
222 (goto-char (point-min))
223 (let ((search-end (save-excursion (forward-line 100) (point))))
224 (if (re-search-forward
225 "^@setfilename[ \t]+\\([^ \t\n]+\\)[ \t]*"
226 search-end t)
227 (setq makeinfo-output-file-name
228 (buffer-substring (match-beginning 1) (match-end 1)))
229 (error
230 "The texinfo file needs a line saying: @setfilename <name>"))))
232 (save-excursion
233 (makeinfo-compile
234 (concat makeinfo-run-command " " makeinfo-options
235 " " buffer-file-name)
236 "No more errors."
237 t)))
239 (defun makeinfo-recenter-compilation-buffer (linenum)
240 "Redisplay `*compilation*' buffer so most recent output can be seen.
241 The last line of the buffer is displayed on
242 line LINE of the window, or centered if LINE is nil."
243 (interactive "P")
244 (let ((makeinfo-buffer (get-buffer "*compilation*"))
245 (old-buffer (current-buffer)))
246 (if (null makeinfo-buffer)
247 (message "No *compilation* buffer")
248 (pop-to-buffer makeinfo-buffer)
249 (bury-buffer makeinfo-buffer)
250 (goto-char (point-max))
251 (recenter (if linenum
252 (prefix-numeric-value linenum)
253 (/ (window-height) 2)))
254 (pop-to-buffer old-buffer)
257 ;;; Place `provide' at end of file.
258 (provide 'makeinfo)
260 ;;; makeinfo.el ends here