annotate lisp/packages/makeinfo.el @ 0:376386a54a3c r19-14

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