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
ee4c0f69
Commit
ee4c0f69
authored
Aug 24, 2012
by
Paul Eggert
Browse files
* emacs.c (fatal_error_signal_hook): Remove.
All uses removed. This leftover from old code was always 0.
parent
17c05d74
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
8 deletions
+3
-8
src/ChangeLog
src/ChangeLog
+3
-0
src/emacs.c
src/emacs.c
+0
-8
No files found.
src/ChangeLog
View file @
ee4c0f69
2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
* emacs.c (fatal_error_signal_hook): Remove.
All uses removed. This leftover from old code was always 0.
* casefiddle.c, casetab.c, category.c: Use bool for boolean.
* casefiddle.c (casify_object, casify_region):
* casetab.c (set_case_table):
...
...
src/emacs.c
View file @
ee4c0f69
...
...
@@ -279,11 +279,6 @@ static int fatal_error_code;
/* Nonzero if handling a fatal error already. */
int
fatal_error_in_progress
;
/* If non-null, call this function from fatal_error_signal before
committing suicide. */
static
void
(
*
fatal_error_signal_hook
)
(
void
);
#ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
/* When compiled with GTK and running under Gnome,
multiple threads may be created. Keep track of our main
...
...
@@ -331,9 +326,6 @@ fatal_error_signal (int sig)
sigunblock
(
sigmask
(
fatal_error_code
));
#endif
if
(
fatal_error_signal_hook
)
fatal_error_signal_hook
();
kill
(
getpid
(),
fatal_error_code
);
}
...
...
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