# HG changeset patch # User Andreas Schwab # Date 1196071007 0 # Node ID e39319cd62d842e7333ae57a6c3f0ce999db636d # Parent 40827ab5ae6aa52b2e3c98e229360ecb91e34e6a (list_processes_1): Fix indentation level of the command column. diff -r 40827ab5ae6a -r e39319cd62d8 src/process.c --- a/src/process.c Mon Nov 26 09:56:30 2007 +0000 +++ b/src/process.c Mon Nov 26 09:56:47 2007 +0000 @@ -1375,8 +1375,10 @@ if (w_tty) { XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1); - XSETFASTINT (i_command, XFASTINT (i_buffer) + w_tty + 1); - } else { + XSETFASTINT (i_command, XFASTINT (i_tty) + w_tty + 1); + } + else + { i_tty = Qnil; XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1); }