diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-07-04 15:51:05 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-07-04 15:51:05 +0200 |
commit | b8ce688b115129f49bf5b9fbedf8406512fd231c (patch) | |
tree | 5cc94adf860236dae59d0204fe2c15d943c8c879 /src/editfns.c | |
parent | e5447b22e975b57094fb6089bf98a238d29fd710 (diff) | |
download | emacs-b8ce688b115129f49bf5b9fbedf8406512fd231c.tar.gz |
Fix comments and whitespace.
Diffstat (limited to 'src/editfns.c')
-rw-r--r-- | src/editfns.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/editfns.c b/src/editfns.c index f318705d2cd..5b340644fa8 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -1436,7 +1436,7 @@ get_system_name (void) } 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 @@ usage: (format STRING &rest OBJECTS) */) 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 @@ usage: (format STRING &rest OBJECTS) */) 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 @@ usage: (format STRING &rest OBJECTS) */) discarded[format - format_start] = 1; format++; - while (index("-+0# ", *format)) + while (index ("-+0# ", *format)) { if (*format == '-') { |