From: Pavel Janík Date: Tue, 13 Nov 2001 11:56:24 +0000 (+0000) Subject: Doc fix. X-Git-Tag: ttn-vms-21-2-B4~18602 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ddb67bdc78cd6875463d806c3849ad522800fb55;p=emacs.git Doc fix. --- diff --git a/src/ChangeLog b/src/ChangeLog index 08a77200946..b142212fdba 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2001-11-13 Pavel Jan,Bm(Bk + * fns.c: Doc fix. + * emacs.c: Doc fix. * coding.c: Doc fix. diff --git a/src/coding.c b/src/coding.c index 6824df089a4..b6b908ba185 100644 --- a/src/coding.c +++ b/src/coding.c @@ -6727,7 +6727,7 @@ DEFUN ("set-terminal-coding-system-internal", DEFUN ("set-safe-terminal-coding-system-internal", Fset_safe_terminal_coding_system_internal, Sset_safe_terminal_coding_system_internal, 1, 1, 0, - doc: /* Internal use only. */) + doc: /* Internal use only. */) (coding_system) Lisp_Object coding_system; { diff --git a/src/emacs.c b/src/emacs.c index 9a20a73a378..4d4ab19f795 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -2279,7 +2279,7 @@ before you compile Emacs, to enable the code for this feature. */); emacs_priority = 0; DEFVAR_LISP ("path-separator", &Vpath_separator, - doc: /* The directory separator in search paths, as a string. */); + doc: /* The directory separator in search paths, as a string. */); { char c = SEPCHAR; Vpath_separator = make_string (&c, 1); diff --git a/src/fns.c b/src/fns.c index 199f68de90b..279dba0fd88 100644 --- a/src/fns.c +++ b/src/fns.c @@ -74,7 +74,7 @@ extern long time (); #endif DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0, - doc: /* Return the argument unchanged. */) + doc: /* Return the argument unchanged. */) (arg) Lisp_Object arg; { @@ -1166,8 +1166,7 @@ Elements of ALIST that are not conses are also shared. */) } DEFUN ("substring", Fsubstring, Ssubstring, 2, 3, 0, - doc: /* -Return a substring of STRING, starting at index FROM and ending before TO. + doc: /* Return a substring of STRING, starting at index FROM and ending before TO. TO may be nil or omitted; then the substring runs to the end of STRING. If FROM or TO is negative, it counts from the end.