comparison lib-src/make-docfile.c @ 650:39f0e62a8511

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Tue, 19 May 1992 05:22:52 +0000
parents 40b255f55df3
children 8a4c2c149ec2
comparison
equal deleted inserted replaced
649:61deba7b73b6 650:39f0e62a8511
168 space = (c == ' '); 168 space = (c == ' ');
169 169
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 }
177 putc ('\n', out); 177 putc ('\n', out);
178 } 178 }