aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorJim Blandy1992-05-19 05:22:52 +0000
committerJim Blandy1992-05-19 05:22:52 +0000
commitf76475ad8aa5b509d9003a9b9ac525c6863920a5 (patch)
tree3e3e2647e73b1bc53a1f73f8cffb72350a5a5e63 /lib-src
parent7fa788da36613e59dd189c26ebe3f6554b75a90c (diff)
downloademacs-f76475ad8aa5b509d9003a9b9ac525c6863920a5.tar.gz
emacs-f76475ad8aa5b509d9003a9b9ac525c6863920a5.zip
*** empty log message ***
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/make-docfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c
index 2436ac6458f..d8e9377f321 100644
--- a/lib-src/make-docfile.c
+++ b/lib-src/make-docfile.c
@@ -170,7 +170,7 @@ write_c_args (out, buf, minargs, maxargs)
170 /* Print the C arguments as they would appear in Elisp; 170 /* Print the C arguments as they would appear in Elisp;
171 print underscores as hyphens. */ 171 print underscores as hyphens. */
172 if (c == '_') 172 if (c == '_')
173 putc ('-'); 173 putc ('-', out);
174 else 174 else
175 putc (c, out); 175 putc (c, out);
176 } 176 }