]> git.eshelyaron.com Git - emacs.git/commitdiff
(list_processes_1): Fix indentation level of the
authorAndreas Schwab <schwab@suse.de>
Mon, 26 Nov 2007 09:57:22 +0000 (09:57 +0000)
committerAndreas Schwab <schwab@suse.de>
Mon, 26 Nov 2007 09:57:22 +0000 (09:57 +0000)
command column.

src/ChangeLog
src/process.c

index 206ded2aaa572f580168b15c539264de0b74ba0b..9ed11c061e2c95c9346da72c4f6d18b3088925d5 100644 (file)
@@ -1,3 +1,8 @@
+2007-11-26  Andreas Schwab  <schwab@suse.de>
+
+       * process.c (list_processes_1): Fix indentation level of the
+       command column.
+
 2007-11-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
        * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
index 09705c436b73ebd5df4c3c560ad151dd6a25dc86..013aad401172316f243eec1ad432c4104deb0285 100644 (file)
@@ -1370,8 +1370,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);
     }