aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPavel Janík2001-11-13 11:56:24 +0000
committerPavel Janík2001-11-13 11:56:24 +0000
commitddb67bdc78cd6875463d806c3849ad522800fb55 (patch)
tree08c7d848d3b254c3b00d3b34396965591a03225b /src
parent3467c4026924cefd10c106b5973154eda4c01f72 (diff)
downloademacs-ddb67bdc78cd6875463d806c3849ad522800fb55.tar.gz
emacs-ddb67bdc78cd6875463d806c3849ad522800fb55.zip
Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/coding.c2
-rw-r--r--src/emacs.c2
-rw-r--r--src/fns.c5
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 @@
12001-11-13 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 12001-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",
6727DEFUN ("set-safe-terminal-coding-system-internal", 6727DEFUN ("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);
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 ();
74#endif 74#endif
75 75
76DEFUN ("identity", Fidentity, Sidentity, 1, 1, 0, 76DEFUN ("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
1168DEFUN ("substring", Fsubstring, Ssubstring, 2, 3, 0, 1168DEFUN ("substring", Fsubstring, Ssubstring, 2, 3, 0,
1169 doc: /* 1169 doc: /* Return a substring of STRING, starting at index FROM and ending before TO.
1170Return a substring of STRING, starting at index FROM and ending before TO.
1171TO may be nil or omitted; then the substring runs to the end of STRING. 1170TO may be nil or omitted; then the substring runs to the end of STRING.
1172If FROM or TO is negative, it counts from the end. 1171If FROM or TO is negative, it counts from the end.
1173 1172