diff options
| author | Pavel Janík | 2001-11-13 11:56:24 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-11-13 11:56:24 +0000 |
| commit | ddb67bdc78cd6875463d806c3849ad522800fb55 (patch) | |
| tree | 08c7d848d3b254c3b00d3b34396965591a03225b /src | |
| parent | 3467c4026924cefd10c106b5973154eda4c01f72 (diff) | |
| download | emacs-ddb67bdc78cd6875463d806c3849ad522800fb55.tar.gz emacs-ddb67bdc78cd6875463d806c3849ad522800fb55.zip | |
Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/coding.c | 2 | ||||
| -rw-r--r-- | src/emacs.c | 2 | ||||
| -rw-r--r-- | src/fns.c | 5 |
4 files changed, 6 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 08a77200946..b142212fdba 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2001-11-13 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 1 | 2001-11-13 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 2 | ||
| 3 | * fns.c: Doc fix. | ||
| 4 | |||
| 3 | * emacs.c: Doc fix. | 5 | * emacs.c: Doc fix. |
| 4 | 6 | ||
| 5 | * coding.c: Doc fix. | 7 | * 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", | |||
| 6727 | DEFUN ("set-safe-terminal-coding-system-internal", | 6727 | DEFUN ("set-safe-terminal-coding-system-internal", |
| 6728 | Fset_safe_terminal_coding_system_internal, | 6728 | Fset_safe_terminal_coding_system_internal, |
| 6729 | Sset_safe_terminal_coding_system_internal, 1, 1, 0, | 6729 | Sset_safe_terminal_coding_system_internal, 1, 1, 0, |
| 6730 | doc: /* Internal use only. */) | 6730 | doc: /* Internal use only. */) |
| 6731 | (coding_system) | 6731 | (coding_system) |
| 6732 | Lisp_Object coding_system; | 6732 | Lisp_Object coding_system; |
| 6733 | { | 6733 | { |
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. */); | |||
| 2279 | emacs_priority = 0; | 2279 | emacs_priority = 0; |
| 2280 | 2280 | ||
| 2281 | DEFVAR_LISP ("path-separator", &Vpath_separator, | 2281 | DEFVAR_LISP ("path-separator", &Vpath_separator, |
| 2282 | doc: /* The directory separator in search paths, as a string. */); | 2282 | doc: /* The directory separator in search paths, as a string. */); |
| 2283 | { | 2283 | { |
| 2284 | char c = SEPCHAR; | 2284 | char c = SEPCHAR; |
| 2285 | Vpath_separator = make_string (&c, 1); | 2285 | Vpath_separator = make_string (&c, 1); |
| @@ -74,7 +74,7 @@ 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 | { |
| @@ -1166,8 +1166,7 @@ Elements of ALIST that are not conses are also shared. */) | |||
| 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 | ||