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
886cc2b8
Commit
886cc2b8
authored
Feb 18, 2010
by
Stefan Monnier
Browse files
(fatal): Add a final \n if needed (bug#5596).
parent
73a37a69
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
src/ChangeLog
src/ChangeLog
+9
-5
src/term.c
src/term.c
+2
-0
No files found.
src/ChangeLog
View file @
886cc2b8
2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
* term.c (fatal): Add a final \n if needed (bug#5596).
2010-02-18 Chong Yidong <cyd@stupidchicken.com>
2010-02-18 Chong Yidong <cyd@stupidchicken.com>
* nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
* nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
...
@@ -8,15 +12,15 @@
...
@@ -8,15 +12,15 @@
2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
* coding.c (record_conversion_result):
Handle
* coding.c (record_conversion_result):
CODING_RESULT_INSUFFICIENT_DST.
Handle
CODING_RESULT_INSUFFICIENT_DST.
(decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
(decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
memory allocation error.
memory allocation error.
2010-02-17 Kenichi Handa <handa@m17n.org>
2010-02-17 Kenichi Handa <handa@m17n.org>
* coding.c (decode_coding_ccl): Don't setup ccl program here.
Fix
* coding.c (decode_coding_ccl): Don't setup ccl program here.
for the case that the output buffer is fullfilled.
Fix
for the case that the output buffer is fullfilled.
(decode_coding): Setup ccl program here. Keep looping when the
(decode_coding): Setup ccl program here. Keep looping when the
decoder stopped because the output buffer is
decoder stopped because the output buffer is
fullfilled (bug#5534).
fullfilled (bug#5534).
...
@@ -27,7 +31,7 @@
...
@@ -27,7 +31,7 @@
* xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
* xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
bug #5571.
bug #5571.
(XTflash): Use Gdk-routines if USE_GTK so scroll bars do
es
n't get
(XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
overdrawn.
overdrawn.
2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
...
...
src/term.c
View file @
886cc2b8
...
@@ -3938,6 +3938,8 @@ fatal (const char *str, ...)
...
@@ -3938,6 +3938,8 @@ fatal (const char *str, ...)
va_start
(
ap
,
str
);
va_start
(
ap
,
str
);
fprintf
(
stderr
,
"emacs: "
);
fprintf
(
stderr
,
"emacs: "
);
vfprintf
(
stderr
,
str
,
ap
);
vfprintf
(
stderr
,
str
,
ap
);
if
(
!
(
strlen
(
str
)
>
0
&&
str
[
strlen
(
str
)
-
1
]
==
'\n'
))
fprintf
(
stderr
,
"
\n
"
);
va_end
(
ap
);
va_end
(
ap
);
fflush
(
stderr
);
fflush
(
stderr
);
exit
(
1
);
exit
(
1
);
...
...
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