Mercurial > emacs
changeset 41006:fd83ec62a495
Doc fix.
author | Pavel Janík <Pavel@Janik.cz> |
---|---|
date | Tue, 13 Nov 2001 11:55:47 +0000 |
parents | 56b36ada749c |
children | b4a8657e3d2d |
files | src/coding.c src/emacs.c src/fns.c |
diffstat | 3 files changed, 4 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/coding.c Tue Nov 13 11:54:47 2001 +0000 +++ b/src/coding.c Tue Nov 13 11:55:47 2001 +0000 @@ -6727,7 +6727,7 @@ 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; {
--- a/src/emacs.c Tue Nov 13 11:54:47 2001 +0000 +++ b/src/emacs.c Tue Nov 13 11:55:47 2001 +0000 @@ -2279,7 +2279,7 @@ 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);
--- a/src/fns.c Tue Nov 13 11:54:47 2001 +0000 +++ b/src/fns.c Tue Nov 13 11:55:47 2001 +0000 @@ -74,7 +74,7 @@ #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 @@ } 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.