aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorErik Naggum1996-01-09 00:31:17 +0000
committerErik Naggum1996-01-09 00:31:17 +0000
commite912ba094526475536b7ad86e42d8b4a429a94d6 (patch)
treea9c157761d78791e0bc776fdc8a56e62b6977c4d /src
parent23bd240fe39f2219ec08e23a7fdd0e09e44e29d5 (diff)
downloademacs-e912ba094526475536b7ad86e42d8b4a429a94d6.tar.gz
emacs-e912ba094526475536b7ad86e42d8b4a429a94d6.zip
(Fsend_string_to_terminal, Fsit_for): Harmonize arguments with
documentation.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index e9978749e2a..19f6c33c1cf 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -2208,15 +2208,15 @@ DEFUN ("send-string-to-terminal", Fsend_string_to_terminal,
2208 Ssend_string_to_terminal, 1, 1, 0, 2208 Ssend_string_to_terminal, 1, 1, 0,
2209 "Send STRING to the terminal without alteration.\n\ 2209 "Send STRING to the terminal without alteration.\n\
2210Control characters in STRING will have terminal-dependent effects.") 2210Control characters in STRING will have terminal-dependent effects.")
2211 (str) 2211 (string)
2212 Lisp_Object str; 2212 Lisp_Object string;
2213{ 2213{
2214 CHECK_STRING (str, 0); 2214 CHECK_STRING (string, 0);
2215 fwrite (XSTRING (str)->data, 1, XSTRING (str)->size, stdout); 2215 fwrite (XSTRING (string)->data, 1, XSTRING (string)->size, stdout);
2216 fflush (stdout); 2216 fflush (stdout);
2217 if (termscript) 2217 if (termscript)
2218 { 2218 {
2219 fwrite (XSTRING (str)->data, 1, XSTRING (str)->size, termscript); 2219 fwrite (XSTRING (string)->data, 1, XSTRING (string)->size, termscript);
2220 fflush (termscript); 2220 fflush (termscript);
2221 } 2221 }
2222 return Qnil; 2222 return Qnil;
@@ -2411,7 +2411,7 @@ fraction of a second. Optional second arg MILLISECONDS specifies an\n\
2411additional wait period, in milliseconds; this may be useful if your\n\ 2411additional wait period, in milliseconds; this may be useful if your\n\
2412Emacs was built without floating point support.\n\ 2412Emacs was built without floating point support.\n\
2413\(Not all operating systems support waiting for a fraction of a second.)\n\ 2413\(Not all operating systems support waiting for a fraction of a second.)\n\
2414Optional third arg non-nil means don't redisplay, just wait for input.\n\ 2414Optional third arg NODISP non-nil means don't redisplay, just wait for input.\n\
2415Redisplay is preempted as always if input arrives, and does not happen\n\ 2415Redisplay is preempted as always if input arrives, and does not happen\n\
2416if input is available before it starts.\n\ 2416if input is available before it starts.\n\
2417Value is t if waited the full time with no input arriving.") 2417Value is t if waited the full time with no input arriving.")