Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e04fd7a4
Commit
e04fd7a4
authored
Dec 30, 2001
by
Richard M. Stallman
Browse files
(makeinfo-compilation-sentinel):
Display the output buffer in a more intelligent way.
parent
7ad0c1c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
lisp/textmodes/makeinfo.el
lisp/textmodes/makeinfo.el
+8
-4
No files found.
lisp/textmodes/makeinfo.el
View file @
e04fd7a4
...
...
@@ -193,10 +193,14 @@ command to gain use of `next-error'."
(
if
(
and
makeinfo-temp-file
(
file-exists-p
makeinfo-temp-file
))
(
delete-file
makeinfo-temp-file
))
;; Always use the version on disk.
(
if
(
get-file-buffer
makeinfo-output-file-name
)
(
progn
(
set-buffer
makeinfo-output-file-name
)
(
revert-buffer
t
t
))
(
find-file
makeinfo-output-file-name
))
(
let
((
buffer
(
get-file-buffer
makeinfo-output-file-name
)))
(
if
buffer
(
with-current-buffer
buffer
(
revert-buffer
t
t
))
(
setq
buffer
(
find-file-noselect
makeinfo-output-file-name
)))
(
if
(
window-dedicated-p
(
selected-window
))
(
switch-to-buffer-other-window
buffer
)
(
switch-to-buffer
buffer
)))
(
goto-char
(
point-min
)))
(
defun
makeinfo-buffer
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment