diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2011-09-09 03:06:52 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2011-09-09 03:06:52 +0200 |
commit | 5e617bc2b62189768814fafd1a875e89a094d3ef (patch) | |
tree | d96d22e012035d044557abf4de0b8e30b03d61b7 /src/fns.c | |
parent | 9b1c252e294bed3aef0d2f2fc5d1fa9f72df9ee8 (diff) | |
download | emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.tar.gz |
Whitespace changes.
Diffstat (limited to 'src/fns.c')
-rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c index a3af6b8c15a..392f447a6d8 100644 --- a/src/fns.c +++ b/src/fns.c @@ -4704,13 +4704,13 @@ secure_hash (Lisp_Object algorithm, Lisp_Object object, Lisp_Object start, Lisp_ force_raw_text = 1; } - if (NILP (coding_system) && !NILP (Fbuffer_file_name(object))) + if (NILP (coding_system) && !NILP (Fbuffer_file_name (object))) { /* Check file-coding-system-alist. */ Lisp_Object args[4], val; args[0] = Qwrite_region; args[1] = start; args[2] = end; - args[3] = Fbuffer_file_name(object); + args[3] = Fbuffer_file_name (object); val = Ffind_operation_coding_system (4, args); if (CONSP (val) && !NILP (XCDR (val))) coding_system = XCDR (val); |