aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/ChangeLog4
-rw-r--r--lib-src/emacsclient.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index 9f3fcc13371..4764871fa54 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,7 @@
12004-07-17 Richard M. Stallman <rms@gnu.org>
2
3 * emacsclient.c (quote_file_name): Pass COPY thru %s to output it.
4
12004-06-01 Juanma Barranquero <lektu@terra.es> 52004-06-01 Juanma Barranquero <lektu@terra.es>
2 6
3 * makefile.w32-in (obj): Add image.c. 7 * makefile.w32-in (obj): Add image.c.
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 0698691bf13..24dcdffff2c 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -203,7 +203,7 @@ quote_file_name (name, stream)
203 } 203 }
204 *q++ = 0; 204 *q++ = 0;
205 205
206 fprintf (stream, copy); 206 fprintf (stream, "%s", copy);
207 207
208 free (copy); 208 free (copy);
209} 209}