aboutsummaryrefslogtreecommitdiffhomepage
path: root/fish_pager.c
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-08-28 22:02:44 +1000
committerGravatar axel <axel@liljencrantz.se>2006-08-28 22:02:44 +1000
commit53ea5d60b7433c06bdae94865c7b4be44fef79ed (patch)
tree9e583c61042ad9bff8e43d04a391f7a7695ac1c7 /fish_pager.c
parent9525f429c636aca14f67a644e747c0258f7705ca (diff)
Minor code tweaks, mostly things like indentation, but also a ferw code reorderings
darcs-hash:20060828120244-ac50b-ad4be149ff245b6f799452f9eeff7bcc60af1526.gz
Diffstat (limited to 'fish_pager.c')
-rw-r--r--fish_pager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fish_pager.c b/fish_pager.c
index f5a1ce3d..87970b2d 100644
--- a/fish_pager.c
+++ b/fish_pager.c
@@ -931,7 +931,7 @@ static void init()
output_set_writer( &pager_buffered_writer );
pager_buffer = halloc( global_context, sizeof( buffer_t ) );
halloc_register_function( global_context, (void (*)(void *))&b_destroy, pager_buffer );
-
+
sigemptyset( & act.sa_mask );
act.sa_flags=0;
act.sa_handler=SIG_DFL;
@@ -944,7 +944,7 @@ static void init()
}
handle_winch( 0 ); /* Set handler for window change events */
-
+
tcgetattr(0,&pager_modes); /* get the current terminal modes */
memcpy( &saved_modes,
&pager_modes,