aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan Djärv2007-09-14 06:20:00 +0000
committerJan Djärv2007-09-14 06:20:00 +0000
commit0e55874fcbd9f57023968b353fe62d59c72867a9 (patch)
tree25ab0ab8b4eca5f0462ad0d7fc8e68580439082b /src
parenta8316a7ceccd42ee9eaca7bc2d51b7f9de5e4b98 (diff)
downloademacs-0e55874fcbd9f57023968b353fe62d59c72867a9.tar.gz
emacs-0e55874fcbd9f57023968b353fe62d59c72867a9.zip
(xg_get_file_with_chooser): Move GCPRO1 after declarations
Diffstat (limited to 'src')
-rw-r--r--src/gtkutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtkutil.c b/src/gtkutil.c
index 7b1e4c5272d..d80bd6f9eb6 100644
--- a/src/gtkutil.c
+++ b/src/gtkutil.c
@@ -1412,8 +1412,8 @@ xg_get_file_with_chooser (f, prompt, default_filename,
1412 { 1412 {
1413 Lisp_Object file; 1413 Lisp_Object file;
1414 struct gcpro gcpro1; 1414 struct gcpro gcpro1;
1415 GCPRO1 (file);
1416 char *utf8_filename; 1415 char *utf8_filename;
1416 GCPRO1 (file);
1417 1417
1418 file = build_string (default_filename); 1418 file = build_string (default_filename);
1419 1419