aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndreas Schwab2007-11-26 09:57:22 +0000
committerAndreas Schwab2007-11-26 09:57:22 +0000
commitdd9b0004426c5ad2603d606466a8d79ab80888af (patch)
tree65e299c1eed6ca3baa216f13755f700030d07043 /src
parent20c63e44d1ad36b172bb38833cfe262d0679d927 (diff)
downloademacs-dd9b0004426c5ad2603d606466a8d79ab80888af.tar.gz
emacs-dd9b0004426c5ad2603d606466a8d79ab80888af.zip
(list_processes_1): Fix indentation level of the
command column.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/process.c6
2 files changed, 9 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 206ded2aaa5..9ed11c061e2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12007-11-26 Andreas Schwab <schwab@suse.de>
2
3 * process.c (list_processes_1): Fix indentation level of the
4 command column.
5
12007-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 62007-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 7
3 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and 8 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
diff --git a/src/process.c b/src/process.c
index 09705c436b7..013aad40117 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1370,8 +1370,10 @@ list_processes_1 (query_only)
1370 if (w_tty) 1370 if (w_tty)
1371 { 1371 {
1372 XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1); 1372 XSETFASTINT (i_tty, XFASTINT (i_buffer) + w_buffer + 1);
1373 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_tty + 1); 1373 XSETFASTINT (i_command, XFASTINT (i_tty) + w_tty + 1);
1374 } else { 1374 }
1375 else
1376 {
1375 i_tty = Qnil; 1377 i_tty = Qnil;
1376 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1); 1378 XSETFASTINT (i_command, XFASTINT (i_buffer) + w_buffer + 1);
1377 } 1379 }