diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-07-17 14:27:24 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-07-17 14:27:24 +0000 |
commit | cf0fad845abeff2e295e50eb08085cda1d711b66 (patch) | |
tree | 8b31e02ffc182ca9e837840cb536bc5b1af9e1cc /lib-src | |
parent | d1b2b8cc72806e2049b5fd694b6f7017fd254f74 (diff) | |
download | emacs-cf0fad845abeff2e295e50eb08085cda1d711b66.tar.gz |
(quote_file_name): Pass COPY thru %s to output it.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/emacsclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) } *q++ = 0; - fprintf (stream, copy); + fprintf (stream, "%s", copy); free (copy); } |