From: Andreas Schwab Date: Mon, 26 Nov 2007 09:56:47 +0000 (+0000) Subject: (list_processes_1): Fix indentation level of the X-Git-Tag: emacs-pretest-23.0.90~9463 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d3c0009d302281e4e5546f08c27207b7392e8034;p=emacs.git (list_processes_1): Fix indentation level of the command column. --- diff --git a/src/process.c b/src/process.c index eca9c47e582..dc96bc27e78 100644 --- a/src/process.c +++ b/src/process.c @@ -1375,8 +1375,10 @@ list_processes_1 (query_only) 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); }