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