diff options
| author | Juanma Barranquero | 2011-09-09 03:06:52 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2011-09-09 03:06:52 +0200 |
| commit | 5e617bc2b62189768814fafd1a875e89a094d3ef (patch) | |
| tree | d96d22e012035d044557abf4de0b8e30b03d61b7 /src/fns.c | |
| parent | 9b1c252e294bed3aef0d2f2fc5d1fa9f72df9ee8 (diff) | |
| download | emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.tar.gz emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.zip | |
Whitespace changes.
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -4704,13 +4704,13 @@ secure_hash (Lisp_Object algorithm, Lisp_Object object, Lisp_Object start, Lisp_ | |||
| 4704 | force_raw_text = 1; | 4704 | force_raw_text = 1; |
| 4705 | } | 4705 | } |
| 4706 | 4706 | ||
| 4707 | if (NILP (coding_system) && !NILP (Fbuffer_file_name(object))) | 4707 | if (NILP (coding_system) && !NILP (Fbuffer_file_name (object))) |
| 4708 | { | 4708 | { |
| 4709 | /* Check file-coding-system-alist. */ | 4709 | /* Check file-coding-system-alist. */ |
| 4710 | Lisp_Object args[4], val; | 4710 | Lisp_Object args[4], val; |
| 4711 | 4711 | ||
| 4712 | args[0] = Qwrite_region; args[1] = start; args[2] = end; | 4712 | args[0] = Qwrite_region; args[1] = start; args[2] = end; |
| 4713 | args[3] = Fbuffer_file_name(object); | 4713 | args[3] = Fbuffer_file_name (object); |
| 4714 | val = Ffind_operation_coding_system (4, args); | 4714 | val = Ffind_operation_coding_system (4, args); |
| 4715 | if (CONSP (val) && !NILP (XCDR (val))) | 4715 | if (CONSP (val) && !NILP (XCDR (val))) |
| 4716 | coding_system = XCDR (val); | 4716 | coding_system = XCDR (val); |