Mercurial > hg > xemacs-beta
comparison src/symbols.c @ 3379:b544987e2eca
[xemacs-hg @ 2006-05-06 08:09:35 by aidan]
Fix the win32 build following my lib-src/DOC format changes.
author | aidan |
---|---|
date | Sat, 06 May 2006 08:09:37 +0000 |
parents | 959746c534f6 |
children | 45671f160bd5 |
comparison
equal
deleted
inserted
replaced
3378:b90d5053b5ca | 3379:b544987e2eca |
---|---|
727 { | 727 { |
728 const char *name; | 728 const char *name; |
729 if (!SUBRP (subr)) | 729 if (!SUBRP (subr)) |
730 wrong_type_argument (Qsubrp, subr); | 730 wrong_type_argument (Qsubrp, subr); |
731 name = XSUBR (subr)->name; | 731 name = XSUBR (subr)->name; |
732 return make_string (name, strlen (name)); | 732 return make_string ((const Ibyte *)name, strlen (name)); |
733 } | 733 } |
734 | 734 |
735 DEFUN ("setplist", Fsetplist, 2, 2, 0, /* | 735 DEFUN ("setplist", Fsetplist, 2, 2, 0, /* |
736 Set SYMBOL's property list to NEWPLIST, and return NEWPLIST. | 736 Set SYMBOL's property list to NEWPLIST, and return NEWPLIST. |
737 */ | 737 */ |