Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
57c9eb68
Commit
57c9eb68
authored
Apr 29, 1994
by
Karl Heuer
Browse files
Doc fixes.
parent
e3dfcd4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
src/print.c
src/print.c
+7
-7
No files found.
src/print.c
View file @
57c9eb68
...
...
@@ -311,8 +311,8 @@ print_string (string, printcharfun)
}
DEFUN
(
"write-char"
,
Fwrite_char
,
Swrite_char
,
1
,
2
,
0
,
"Output character CHAR to stream
STREAM
.
\n
\
STREAM
defaults to the value of `standard-output' (which see)."
)
"Output character CHAR to stream
PRINTCHARFUN
.
\n
\
PRINTCHARFUN
defaults to the value of `standard-output' (which see)."
)
(
ch
,
printcharfun
)
Lisp_Object
ch
,
printcharfun
;
{
...
...
@@ -448,8 +448,8 @@ to get the buffer displayed. It gets one argument, the buffer to display.")
static
void
print
();
DEFUN
(
"terpri"
,
Fterpri
,
Sterpri
,
0
,
1
,
0
,
"Output a newline to
STREAM
.
\n
\
If
STREAM
is omitted or nil, the value of `standard-output' is used."
)
"Output a newline to
stream PRINTCHARFUN
.
\n
\
If
PRINTCHARFUN
is omitted or nil, the value of `standard-output' is used."
)
(
printcharfun
)
Lisp_Object
printcharfun
;
{
...
...
@@ -470,7 +470,7 @@ DEFUN ("prin1", Fprin1, Sprin1, 1, 2, 0,
"Output the printed representation of OBJECT, any Lisp object.
\n
\
Quoting characters are printed when needed to make output that `read'
\n
\
can handle, whenever this is possible.
\n
\
Output stream is
STREAM
, or value of `standard-output' (which see)."
)
Output stream is
PRINTCHARFUN
, or value of `standard-output' (which see)."
)
(
obj
,
printcharfun
)
Lisp_Object
obj
,
printcharfun
;
{
...
...
@@ -529,7 +529,7 @@ DEFUN ("princ", Fprinc, Sprinc, 1, 2, 0,
"Output the printed representation of OBJECT, any Lisp object.
\n
\
No quoting characters are used; no delimiters are printed around
\n
\
the contents of strings.
\n
\
Output stream is
STREAM
, or value of standard-output (which see)."
)
Output stream is
PRINTCHARFUN
, or value of standard-output (which see)."
)
(
obj
,
printcharfun
)
Lisp_Object
obj
,
printcharfun
;
{
...
...
@@ -551,7 +551,7 @@ DEFUN ("print", Fprint, Sprint, 1, 2, 0,
"Output the printed representation of OBJECT, with newlines around it.
\n
\
Quoting characters are printed when needed to make output that `read'
\n
\
can handle, whenever this is possible.
\n
\
Output stream is
STREAM
, or value of `standard-output' (which see)."
)
Output stream is
PRINTCHARFUN
, or value of `standard-output' (which see)."
)
(
obj
,
printcharfun
)
Lisp_Object
obj
,
printcharfun
;
{
...
...
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