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
01c50447
Commit
01c50447
authored
Apr 03, 1999
by
Richard M. Stallman
Browse files
(compilation-handle-exit): Do right thing
if (car status) doesn't end in a newline.
parent
919c7723
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
lisp/progmodes/compile.el
lisp/progmodes/compile.el
+3
-2
No files found.
lisp/progmodes/compile.el
View file @
01c50447
...
...
@@ -1015,9 +1015,10 @@ Turning the mode on runs the normal hook `compilation-minor-mode-hook'."
;; later on.
(goto-char omax)
(insert ?\n mode-name "
" (car status))
(forward-char -1)
(if (bolp)
(forward-char -1))
(insert "
at
" (substring (current-time-string) 0 19))
(
forward-char 1
)
(
goto-char (point-max)
)
(setq mode-line-process (format "
:%s
[%s]
" process-status (cdr status)))
;; Force mode line redisplay soon.
(force-mode-line-update)
...
...
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