X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Femodules.h;h=15d06e87c8e72ed2acfbd9a4af2eb33db511fcfb;hb=3f711eea68ce5fd586297b43c8d9936cd2ba916f;hp=575da9fb4fd3c50e3f4e6903060a984393aeec6f;hpb=716cfba952c1dc0d2cf5c968971f3780ba728a89;p=chise%2Fxemacs-chise.git.1 diff --git a/src/emodules.h b/src/emodules.h index 575da9f..15d06e8 100644 --- a/src/emodules.h +++ b/src/emodules.h @@ -60,23 +60,23 @@ extern Lisp_Object Vemacs_minor_version; * second is the name of the module, and the third is the module version. * If the module name is NULL, we will always reload the .so. If it is not * NULL, we check to make sure we haven't loaded it before. If the version - * is specified, we check to make sure we didnt load the module of the + * is specified, we check to make sure we didn't load the module of the * specified version before. We also use these as checks when we open the * module to make sure we have the right module. */ -extern void emodules_load (CONST char *module, CONST char *name, CONST char *version); +extern void emodules_load (const char *module, const char *name, const char *version); /* * Because subrs and symbols added by a dynamic module are not part of * the make-docfile process, we need a clean way to get the variables - * and functions documented. Since people dont like the idea of making + * and functions documented. Since people don't like the idea of making * shared modules use different versions of DEFSUBR() and DEFVAR_LISP() * and friends, we need these two functions to insert the documentation * into the right place. These functions will be called by the module * init code, generated by ellcc during initialization mode. */ -extern void emodules_doc_subr (CONST char *objname, CONST char *docstr); -extern void emodules_doc_sym (CONST char *objname, CONST char *docstr); +extern void emodules_doc_subr (const char *objname, const char *docstr); +extern void emodules_doc_sym (const char *objname, const char *docstr); #define CDOCSUBR(Fname, DOC) emodules_doc_subr (Fname, DOC) #define CDOCSYM(Sname, DOC) emodules_doc_sym (Sname, DOC)