Lines Matching defs:documentation
5 * copy of this software and associated documentation files (the "Software"),
1038 defconstant name initial-value &optional documentation
1041 LispObj *name, *initial_value, *documentation;
1043 documentation = ARGUMENT(2);
1048 if (documentation != UNSPEC) {
1049 CHECK_STRING(documentation);
1052 documentation = NIL;
1053 LispDefconstant(name, EVAL(initial_value), documentation);
1197 defparameter name initial-value &optional documentation
1200 LispObj *name, *initial_value, *documentation;
1202 documentation = ARGUMENT(2);
1207 if (documentation != UNSPEC) {
1208 CHECK_STRING(documentation);
1211 documentation = NIL;
1213 LispProclaimSpecial(name, EVAL(initial_value), documentation);
1221 defvar name &optional initial-value documentation
1224 LispObj *name, *initial_value, *documentation;
1226 documentation = ARGUMENT(2);
1231 if (documentation != UNSPEC) {
1232 CHECK_STRING(documentation);
1235 documentation = NIL;
1239 documentation);
1318 LispDestroy("%s: unknown documentation type %s",
1329 documentation symbol type
7005 lisp::documentation-store symbol type string
7022 /* allow explicitly releasing memory used for documentation */