diff src/editfns.c @ 109131:18f8e88d3829

Fix comments and whitespace.
author Juanma Barranquero <lekktu@gmail.com>
date Sun, 04 Jul 2010 15:51:05 +0200
parents aec1143e8d85
children 750db9f3e6d8
line wrap: on
line diff
--- a/src/editfns.c	Sun Jul 04 15:41:55 2010 +0200
+++ b/src/editfns.c	Sun Jul 04 15:51:05 2010 +0200
@@ -1436,7 +1436,7 @@
 }
 
 char *
-get_operating_system_release(void)
+get_operating_system_release (void)
 {
   if (STRINGP (Voperating_system_release))
     return (char *) SDATA (Voperating_system_release);
@@ -3592,7 +3592,7 @@
      string itself, will not be used.  Element NARGS, corresponding to
      no argument, *will* be assigned to in the case that a `%' and `.'
      occur after the final format specifier.  */
-  int *precision = (int *) (alloca((nargs + 1) * sizeof (int)));
+  int *precision = (int *) (alloca ((nargs + 1) * sizeof (int)));
   int longest_format;
   Lisp_Object val;
   int arg_intervals = 0;
@@ -3763,7 +3763,7 @@
 	       string will finally appear (Bug#5710). */
 	    actual_width = lisp_string_width (args[n], -1, NULL, NULL);
 	    if (precision[n] != -1)
-	      actual_width = min(actual_width,precision[n]);
+	      actual_width = min (actual_width, precision[n]);
 	  }
 	/* Would get MPV otherwise, since Lisp_Int's `point' to low memory.  */
 	else if (INTEGERP (args[n]) && *format != 's')
@@ -3876,7 +3876,7 @@
 	  discarded[format - format_start] = 1;
 	  format++;
 
-	  while (index("-+0# ", *format))
+	  while (index ("-+0# ", *format))
 	    {
 	      if (*format == '-')
 		{