aboutsummaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorPaul Eggert2011-11-25 23:42:44 -0800
committerPaul Eggert2011-11-25 23:42:44 -0800
commit5b76caa476d552e204adc3c1bf4af8e401ec5d42 (patch)
treef1ea7b28bd616eb17f6714af16a81429800479a5 /src/fileio.c
parent78adbf9c3f71e4387d4b01697b76999c883735c4 (diff)
downloademacs-5b76caa476d552e204adc3c1bf4af8e401ec5d42.tar.gz
emacs-5b76caa476d552e204adc3c1bf4af8e401ec5d42.zip
Rename locals to avoid shadowing.
* fileio.c (Finsert_file_contents): Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing. * process.c (wait_reading_process_output): Rename inner 'proc' to 'p' to avoid shadowing. Indent for consistency with usual Emacs style.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 5f7a8ad3972..009f35d2a7f 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -3686,7 +3686,7 @@ variable `last-coding-system-used' to the coding system actually used. */)
3686 int this_count = SPECPDL_INDEX (); 3686 int this_count = SPECPDL_INDEX ();
3687 int multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters)); 3687 int multibyte = ! NILP (BVAR (current_buffer, enable_multibyte_characters));
3688 Lisp_Object conversion_buffer; 3688 Lisp_Object conversion_buffer;
3689 struct gcpro gcpro1; 3689 struct gcpro inner_gcpro1;
3690 3690
3691 conversion_buffer = code_conversion_save (1, multibyte); 3691 conversion_buffer = code_conversion_save (1, multibyte);
3692 3692
@@ -3702,7 +3702,7 @@ variable `last-coding-system-used' to the coding system actually used. */)
3702 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */ 3702 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
3703 unprocessed = 0; /* Bytes not processed in previous loop. */ 3703 unprocessed = 0; /* Bytes not processed in previous loop. */
3704 3704
3705 GCPRO1 (conversion_buffer); 3705 GCPRO1_VAR (conversion_buffer, inner_gcpro);
3706 while (how_much < total) 3706 while (how_much < total)
3707 { 3707 {
3708 /* We read one bunch by one (READ_BUF_SIZE bytes) to allow 3708 /* We read one bunch by one (READ_BUF_SIZE bytes) to allow