1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

*** empty log message ***

This commit is contained in:
Jim Blandy 1992-05-19 05:22:52 +00:00
parent 7fa788da36
commit f76475ad8a
5 changed files with 122 additions and 86 deletions

View file

@ -170,7 +170,7 @@ write_c_args (out, buf, minargs, maxargs)
/* Print the C arguments as they would appear in Elisp;
print underscores as hyphens. */
if (c == '_')
putc ('-');
putc ('-', out);
else
putc (c, out);
}