aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorAndreas Schwab2007-11-26 09:56:47 +0000
committerAndreas Schwab2007-11-26 09:56:47 +0000
commitd3c0009d302281e4e5546f08c27207b7392e8034 (patch)
treece30589d959b20f04ddf0258b5eb9e0ad254ad1f /src/process.c
parent254693ff3d00bf8a272613a5d7a97693f82d848b (diff)
downloademacs-d3c0009d302281e4e5546f08c27207b7392e8034.tar.gz
emacs-d3c0009d302281e4e5546f08c27207b7392e8034.zip
(list_processes_1): Fix indentation level of the
command column.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c6
1 files changed, 4 insertions, 2 deletions
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)
1375 if (w_tty) 1375 if (w_tty)
1376 { 1376 {
1377 XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1); 1377 XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1);
1378 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_tty + 1); 1378 XSETFASTINT (i_command, XFASTINT (i_tty) + w_tty + 1);
1379 } else { 1379 }
1380 else
1381 {
1380 i_tty = Qnil; 1382 i_tty = Qnil;
1381 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1); 1383 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1);
1382 } 1384 }