emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r104066: * src/callproc.c: Indentatio


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104066: * src/callproc.c: Indentation fixup.
Date: Sun, 01 May 2011 11:02:01 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104066
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Sun 2011-05-01 11:02:01 +0200
message:
  * src/callproc.c: Indentation fixup.
modified:
  src/ChangeLog
  src/callproc.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-05-01 08:52:17 +0000
+++ b/src/ChangeLog     2011-05-01 09:02:01 +0000
@@ -1,5 +1,7 @@
 2011-05-01  Andreas Schwab  <address@hidden>
 
+       * callproc.c: Indentation fixup.
+
        * sysdep.c (wait_for_termination_1): Make static.
        (wait_for_termination, interruptible_wait_for_termination): Move
        after wait_for_termination_1.

=== modified file 'src/callproc.c'
--- a/src/callproc.c    2011-05-01 00:04:17 +0000
+++ b/src/callproc.c    2011-05-01 09:02:01 +0000
@@ -1,6 +1,6 @@
 /* Synchronous subprocess invocation for GNU Emacs.
    Copyright (C) 1985-1988, 1993-1995, 1999-2011
-                 Free Software Foundation, Inc.
+                Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
 
@@ -280,9 +280,9 @@
       /* If BUFFER is a list, its meaning is (BUFFER-FOR-STDOUT
         FILE-FOR-STDERR), unless the first element is :file, in which case see
         the next paragraph. */
-      if (CONSP (buffer) &&
-         (! SYMBOLP (XCAR (buffer)) ||
-          strcmp (SSDATA (SYMBOL_NAME (XCAR (buffer))), ":file")))
+      if (CONSP (buffer)
+         && (! SYMBOLP (XCAR (buffer))
+             || strcmp (SSDATA (SYMBOL_NAME (XCAR (buffer))), ":file")))
        {
          if (CONSP (XCDR (buffer)))
            {
@@ -299,9 +299,9 @@
        }
 
       /* If the buffer is (still) a list, it might be a (:file "file") spec. */
-      if (CONSP (buffer) &&
-         SYMBOLP (XCAR (buffer)) &&
-         ! strcmp (SSDATA (SYMBOL_NAME (XCAR (buffer))), ":file"))
+      if (CONSP (buffer)
+         && SYMBOLP (XCAR (buffer))
+         && ! strcmp (SSDATA (SYMBOL_NAME (XCAR (buffer))), ":file"))
        {
          output_file = Fexpand_file_name (XCAR (XCDR (buffer)),
                                           BVAR (current_buffer, directory));
@@ -388,9 +388,9 @@
          output_file = DECODE_FILE (output_file);
          report_file_error ("Opening process output file",
                             Fcons (output_file, Qnil));
-        }
+       }
       if (STRINGP (error_file) || NILP (error_file))
-        output_to_buffer = 0;
+       output_to_buffer = 0;
     }
 
   /* Search for program; barf if not found.  */
@@ -599,12 +599,12 @@
        if (fd[0] >= 0)
          emacs_close (fd[0]);
 #ifdef HAVE_SETSID
-        setsid ();
+       setsid ();
 #endif
 #if defined (USG)
-        setpgrp ();
+       setpgrp ();
 #else
-        setpgrp (pid, pid);
+       setpgrp (pid, pid);
 #endif /* USG */
 
        /* GConf causes us to ignore SIGPIPE, make sure it is restored
@@ -723,132 +723,132 @@
   QUIT;
 
   if (output_to_buffer)
-  {
-    register EMACS_INT nread;
-    int first = 1;
-    EMACS_INT total_read = 0;
-    int carryover = 0;
-    int display_p = display_p_volatile;
-    int display_on_the_fly = display_p;
-    struct coding_system saved_coding;
-
-    saved_coding = process_coding;
-    while (1)
-      {
-       /* Repeatedly read until we've filled as much as possible
-          of the buffer size we have.  But don't read
-          less than 1024--save that for the next bufferful.  */
-       nread = carryover;
-       while (nread < bufsize - 1024)
-         {
-           int this_read = emacs_read (fd[0], buf + nread,
-                                       bufsize - nread);
-
-           if (this_read < 0)
-             goto give_up;
-
-           if (this_read == 0)
-             {
-               process_coding.mode |= CODING_MODE_LAST_BLOCK;
+    {
+      register EMACS_INT nread;
+      int first = 1;
+      EMACS_INT total_read = 0;
+      int carryover = 0;
+      int display_p = display_p_volatile;
+      int display_on_the_fly = display_p;
+      struct coding_system saved_coding;
+
+      saved_coding = process_coding;
+      while (1)
+       {
+         /* Repeatedly read until we've filled as much as possible
+            of the buffer size we have.  But don't read
+            less than 1024--save that for the next bufferful.  */
+         nread = carryover;
+         while (nread < bufsize - 1024)
+           {
+             int this_read = emacs_read (fd[0], buf + nread,
+                                         bufsize - nread);
+
+             if (this_read < 0)
+               goto give_up;
+
+             if (this_read == 0)
+               {
+                 process_coding.mode |= CODING_MODE_LAST_BLOCK;
+                 break;
+               }
+
+             nread += this_read;
+             total_read += this_read;
+
+             if (display_on_the_fly)
                break;
-             }
-
-           nread += this_read;
-           total_read += this_read;
-
-           if (display_on_the_fly)
-             break;
-         }
-
-       /* Now NREAD is the total amount of data in the buffer.  */
-       immediate_quit = 0;
-
-       if (!NILP (buffer))
-         {
-           if (NILP (BVAR (current_buffer, enable_multibyte_characters))
-               && ! CODING_MAY_REQUIRE_DECODING (&process_coding))
-             insert_1_both (buf, nread, nread, 0, 1, 0);
-           else
-             {                 /* We have to decode the input.  */
-               Lisp_Object curbuf;
-               int count1 = SPECPDL_INDEX ();
-
-               XSETBUFFER (curbuf, current_buffer);
-               /* We cannot allow after-change-functions be run
-                  during decoding, because that might modify the
-                  buffer, while we rely on process_coding.produced to
-                  faithfully reflect inserted text until we
-                  TEMP_SET_PT_BOTH below.  */
-               specbind (Qinhibit_modification_hooks, Qt);
-               decode_coding_c_string (&process_coding, (unsigned char *) buf,
-                                       nread, curbuf);
-               unbind_to (count1, Qnil);
-               if (display_on_the_fly
-                   && CODING_REQUIRE_DETECTION (&saved_coding)
-                   && ! CODING_REQUIRE_DETECTION (&process_coding))
-                 {
-                   /* We have detected some coding system.  But,
-                      there's a possibility that the detection was
-                      done by insufficient data.  So, we give up
-                      displaying on the fly.  */
-                   if (process_coding.produced > 0)
-                     del_range_2 (process_coding.dst_pos,
-                                  process_coding.dst_pos_byte,
-                                  process_coding.dst_pos
-                                  + process_coding.produced_char,
-                                  process_coding.dst_pos_byte
-                                  + process_coding.produced, 0);
-                   display_on_the_fly = 0;
-                   process_coding = saved_coding;
-                   carryover = nread;
-                   /* This is to make the above condition always
-                      fails in the future.  */
-                   saved_coding.common_flags
-                     &= ~CODING_REQUIRE_DETECTION_MASK;
-                   continue;
-                 }
-
-               TEMP_SET_PT_BOTH (PT + process_coding.produced_char,
-                                 PT_BYTE + process_coding.produced);
-               carryover = process_coding.carryover_bytes;
-               if (carryover > 0)
-                 memcpy (buf, process_coding.carryover,
-                         process_coding.carryover_bytes);
-             }
-         }
-
-       if (process_coding.mode & CODING_MODE_LAST_BLOCK)
-         break;
-
-       /* Make the buffer bigger as we continue to read more data,
-          but not past CALLPROC_BUFFER_SIZE_MAX.  */
-       if (bufsize < CALLPROC_BUFFER_SIZE_MAX && total_read > 32 * bufsize)
-         if ((bufsize *= 2) > CALLPROC_BUFFER_SIZE_MAX)
-           bufsize = CALLPROC_BUFFER_SIZE_MAX;
-
-       if (display_p)
-         {
-           if (first)
-             prepare_menu_bars ();
-           first = 0;
-           redisplay_preserve_echo_area (1);
-           /* This variable might have been set to 0 for code
-              detection.  In that case, we set it back to 1 because
-              we should have already detected a coding system.  */
-           display_on_the_fly = 1;
-         }
-       immediate_quit = 1;
-       QUIT;
-      }
-  give_up: ;
-
-    Vlast_coding_system_used = CODING_ID_NAME (process_coding.id);
-    /* If the caller required, let the buffer inherit the
-       coding-system used to decode the process output.  */
-    if (inherit_process_coding_system)
-      call1 (intern ("after-insert-file-set-buffer-file-coding-system"),
-            make_number (total_read));
-  }
+           }
+
+         /* Now NREAD is the total amount of data in the buffer.  */
+         immediate_quit = 0;
+
+         if (!NILP (buffer))
+           {
+             if (NILP (BVAR (current_buffer, enable_multibyte_characters))
+                 && ! CODING_MAY_REQUIRE_DECODING (&process_coding))
+               insert_1_both (buf, nread, nread, 0, 1, 0);
+             else
+               {                       /* We have to decode the input.  */
+                 Lisp_Object curbuf;
+                 int count1 = SPECPDL_INDEX ();
+
+                 XSETBUFFER (curbuf, current_buffer);
+                 /* We cannot allow after-change-functions be run
+                    during decoding, because that might modify the
+                    buffer, while we rely on process_coding.produced to
+                    faithfully reflect inserted text until we
+                    TEMP_SET_PT_BOTH below.  */
+                 specbind (Qinhibit_modification_hooks, Qt);
+                 decode_coding_c_string (&process_coding,
+                                         (unsigned char *) buf, nread, curbuf);
+                 unbind_to (count1, Qnil);
+                 if (display_on_the_fly
+                     && CODING_REQUIRE_DETECTION (&saved_coding)
+                     && ! CODING_REQUIRE_DETECTION (&process_coding))
+                   {
+                     /* We have detected some coding system.  But,
+                        there's a possibility that the detection was
+                        done by insufficient data.  So, we give up
+                        displaying on the fly.  */
+                     if (process_coding.produced > 0)
+                       del_range_2 (process_coding.dst_pos,
+                                    process_coding.dst_pos_byte,
+                                    process_coding.dst_pos
+                                    + process_coding.produced_char,
+                                    process_coding.dst_pos_byte
+                                    + process_coding.produced, 0);
+                     display_on_the_fly = 0;
+                     process_coding = saved_coding;
+                     carryover = nread;
+                     /* This is to make the above condition always
+                        fails in the future.  */
+                     saved_coding.common_flags
+                       &= ~CODING_REQUIRE_DETECTION_MASK;
+                     continue;
+                   }
+
+                 TEMP_SET_PT_BOTH (PT + process_coding.produced_char,
+                                   PT_BYTE + process_coding.produced);
+                 carryover = process_coding.carryover_bytes;
+                 if (carryover > 0)
+                   memcpy (buf, process_coding.carryover,
+                           process_coding.carryover_bytes);
+               }
+           }
+
+         if (process_coding.mode & CODING_MODE_LAST_BLOCK)
+           break;
+
+         /* Make the buffer bigger as we continue to read more data,
+            but not past CALLPROC_BUFFER_SIZE_MAX.  */
+         if (bufsize < CALLPROC_BUFFER_SIZE_MAX && total_read > 32 * bufsize)
+           if ((bufsize *= 2) > CALLPROC_BUFFER_SIZE_MAX)
+             bufsize = CALLPROC_BUFFER_SIZE_MAX;
+
+         if (display_p)
+           {
+             if (first)
+               prepare_menu_bars ();
+             first = 0;
+             redisplay_preserve_echo_area (1);
+             /* This variable might have been set to 0 for code
+                detection.  In that case, we set it back to 1 because
+                we should have already detected a coding system.  */
+             display_on_the_fly = 1;
+           }
+         immediate_quit = 1;
+         QUIT;
+       }
+    give_up: ;
+
+      Vlast_coding_system_used = CODING_ID_NAME (process_coding.id);
+      /* If the caller required, let the buffer inherit the
+        coding-system used to decode the process output.  */
+      if (inherit_process_coding_system)
+       call1 (intern ("after-insert-file-set-buffer-file-coding-system"),
+              make_number (total_read));
+    }
 
 #ifndef MSDOS
   /* Wait for it to terminate, unless it already has.  */
@@ -875,7 +875,7 @@
       signame = strsignal (synch_process_termsig);
 
       if (signame == 0)
-        signame = "unknown";
+       signame = "unknown";
 
       synch_process_death = signame;
     }
@@ -1058,18 +1058,18 @@
     {
       char *p = *ep, *q = string;
       while (ok)
-        {
-          if (*q != *p)
-            break;
-          if (*q == 0)
-            /* The string is a lone variable name; keep it for now, we
-               will remove it later.  It is a placeholder for a
-               variable that is not to be included in the environment.  */
-            break;
-          if (*q == '=')
-            ok = 0;
-          p++, q++;
-        }
+       {
+         if (*q != *p)
+           break;
+         if (*q == 0)
+           /* The string is a lone variable name; keep it for now, we
+              will remove it later.  It is a placeholder for a
+              variable that is not to be included in the environment.  */
+           break;
+         if (*q == '=')
+           ok = 0;
+         p++, q++;
+       }
     }
   if (ok)
     *new_env++ = string;
@@ -1173,8 +1173,8 @@
     new_length = 0;
 
     for (tem = Vprocess_environment;
-         CONSP (tem) && STRINGP (XCAR (tem));
-         tem = XCDR (tem))
+        CONSP (tem) && STRINGP (XCAR (tem));
+        tem = XCDR (tem))
       {
        if (strncmp (SSDATA (XCAR (tem)), "DISPLAY", 7) == 0
            && (SDATA (XCAR (tem)) [7] == '\0'
@@ -1227,11 +1227,11 @@
     p = q = env;
     while (*p != 0)
       {
-        while (*q != 0 && strchr (*q, '=') == NULL)
-          q++;
-        *p = *q++;
-        if (*p != 0)
-          p++;
+       while (*q != 0 && strchr (*q, '=') == NULL)
+         q++;
+       *p = *q++;
+       if (*p != 0)
+         p++;
       }
   }
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]