comparison src/fns.c @ 41006:fd83ec62a495

Doc fix.
author Pavel Janík <Pavel@Janik.cz>
date Tue, 13 Nov 2001 11:55:47 +0000
parents aa298258434a
children d0bef01f3cb3 38cab5bfa62b
comparison
equal deleted inserted replaced
41005:56b36ada749c 41006:fd83ec62a495
72 #ifndef HAVE_UNISTD_H 72 #ifndef HAVE_UNISTD_H
73 extern long time (); 73 extern long time ();
74 #endif 74 #endif
75 75
76 DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0, 76 DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0,
77 doc: /* Return the argument unchanged. */) 77 doc: /* Return the argument unchanged. */)
78 (arg) 78 (arg)
79 Lisp_Object arg; 79 Lisp_Object arg;
80 { 80 {
81 return arg; 81 return arg;
82 } 82 }
1164 } 1164 }
1165 return alist; 1165 return alist;
1166 } 1166 }
1167 1167
1168 DEFUN ("substring", Fsubstring, Ssubstring, 2, 3, 0, 1168 DEFUN ("substring", Fsubstring, Ssubstring, 2, 3, 0,
1169 doc: /* 1169 doc: /* Return a substring of STRING, starting at index FROM and ending before TO.
1170 Return a substring of STRING, starting at index FROM and ending before TO.
1171 TO may be nil or omitted; then the substring runs to the end of STRING. 1170 TO may be nil or omitted; then the substring runs to the end of STRING.
1172 If FROM or TO is negative, it counts from the end. 1171 If FROM or TO is negative, it counts from the end.
1173 1172
1174 This function allows vectors as well as strings. */) 1173 This function allows vectors as well as strings. */)
1175 (string, from, to) 1174 (string, from, to)