Mercurial > hg > xemacs-beta
comparison src/lisp.h @ 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 | 2f13ae1532db |
children | b03fc4eae965 |
comparison
equal
deleted
inserted
replaced
3378:b90d5053b5ca | 3379:b544987e2eca |
---|---|
2674 struct Lisp_Subr | 2674 struct Lisp_Subr |
2675 { | 2675 { |
2676 struct lrecord_header lheader; | 2676 struct lrecord_header lheader; |
2677 short min_args; | 2677 short min_args; |
2678 short max_args; | 2678 short max_args; |
2679 /* #### We should make these const Ascbyte * or const Ibyte *, not const | |
2680 char *. */ | |
2679 const char *prompt; | 2681 const char *prompt; |
2680 const char *doc; | 2682 const char *doc; |
2681 const char *name; | 2683 const char *name; |
2682 lisp_fn_t subr_fn; | 2684 lisp_fn_t subr_fn; |
2683 }; | 2685 }; |