Mercurial > emacs
diff src/process.c @ 79486:c2586e2e84d3
(list_processes_1): Fix indentation level of the
command column.
| author | Andreas Schwab <schwab@suse.de> |
|---|---|
| date | Mon, 26 Nov 2007 09:56:15 +0000 |
| parents | f7416cac39e0 |
| children | df7ebb131a0b |
line wrap: on
line diff
--- a/src/process.c Sat Nov 24 15:40:39 2007 +0000 +++ b/src/process.c Mon Nov 26 09:56:15 2007 +0000 @@ -1370,8 +1370,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); }
