Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-19fa
git_rec_nano
Commits
4781d4d3
Commit
4781d4d3
authored
7 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: reshuffle some stuff, to put related things closer together
parent
ef1a3b08
master
feature/match-parens
refactor/readbility
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/nano.c
+10
-12
src/nano.c
with
10 additions
and
12 deletions
+10
-12
src/nano.c
View file @
4781d4d3
...
...
@@ -1196,25 +1196,23 @@ void signal_init(void)
sigaction
(
SIGWINCH
,
&
act
,
NULL
);
#endif
/* Trap normal suspend (^Z) so we can handle it ourselves. */
if
(
!
ISSET
(
SUSPEND
))
{
act
.
sa_handler
=
SIG_IGN
;
#ifdef SIGTSTP
sigaction
(
SIGTSTP
,
&
act
,
NULL
);
#endif
}
else
{
/* Trap a normal suspend (^Z) so we can handle it ourselves. */
if
(
ISSET
(
SUSPEND
))
{
/* Block all other signals in the suspend and continue handlers.
* If we don't do this, other stuff interrupts them! */
sigfillset
(
&
act
.
sa_mask
);
act
.
sa_handler
=
do_suspend
;
#ifdef SIGTSTP
act
.
sa_handler
=
do_suspend
;
sigaction
(
SIGTSTP
,
&
act
,
NULL
);
#endif
act
.
sa_handler
=
do_continue
;
#ifdef SIGCONT
act
.
sa_handler
=
do_continue
;
sigaction
(
SIGCONT
,
&
act
,
NULL
);
#endif
}
else
{
#ifdef SIGTSTP
act
.
sa_handler
=
SIG_IGN
;
sigaction
(
SIGTSTP
,
&
act
,
NULL
);
#endif
}
}
...
...
@@ -1243,8 +1241,8 @@ RETSIGTYPE do_suspend(int signal)
/* Restore the old terminal settings. */
tcsetattr
(
0
,
TCSANOW
,
&
oldterm
);
/* Do what mutt does: send ourselves a SIGSTOP. */
#ifdef SIGSTOP
/* Do what mutt does: send ourselves a SIGSTOP. */
kill
(
0
,
SIGSTOP
);
#endif
}
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help