Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ddb67bdc
Commit
ddb67bdc
authored
Nov 13, 2001
by
Pavel Janík
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doc fix.
parent
3467c402
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
5 deletions
+6
-5
src/ChangeLog
src/ChangeLog
+2
-0
src/coding.c
src/coding.c
+1
-1
src/emacs.c
src/emacs.c
+1
-1
src/fns.c
src/fns.c
+2
-3
No files found.
src/ChangeLog
View file @
ddb67bdc
2001-11-13 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
* fns.c: Doc fix.
* emacs.c: Doc fix.
* coding.c: Doc fix.
...
...
src/coding.c
View file @
ddb67bdc
...
...
@@ -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
;
{
...
...
src/emacs.c
View file @
ddb67bdc
...
...
@@ -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
);
...
...
src/fns.c
View file @
ddb67bdc
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment