aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32console.c
diff options
context:
space:
mode:
authorJason Rumney2001-11-12 23:57:09 +0000
committerJason Rumney2001-11-12 23:57:09 +0000
commit33f096701c84fc754bf5486cd2743dd030f5eb4a (patch)
tree8b94db4dad6b9dd0a7e94d0a492fea091d4f0f26 /src/w32console.c
parentb6f4c7ba9cef461e5c827cb3f485ad82445ff85a (diff)
downloademacs-33f096701c84fc754bf5486cd2743dd030f5eb4a.tar.gz
emacs-33f096701c84fc754bf5486cd2743dd030f5eb4a.zip
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Diffstat (limited to 'src/w32console.c')
-rw-r--r--src/w32console.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/w32console.c b/src/w32console.c
index 41693c63a85..490c1e10373 100644
--- a/src/w32console.c
+++ b/src/w32console.c
@@ -420,11 +420,11 @@ w32_sys_ring_bell (void)
420} 420}
421 421
422DEFUN ("set-message-beep", Fset_message_beep, Sset_message_beep, 1, 1, 0, 422DEFUN ("set-message-beep", Fset_message_beep, Sset_message_beep, 1, 1, 0,
423 "Set the sound generated when the bell is rung.\n\ 423 doc: /* Set the sound generated when the bell is rung.
424SOUND is 'asterisk, 'exclamation, 'hand, 'question, 'ok, or 'silent\n\ 424SOUND is 'asterisk, 'exclamation, 'hand, 'question, 'ok, or 'silent
425to use the corresponding system sound for the bell. The 'silent sound\n\ 425to use the corresponding system sound for the bell. The 'silent sound
426prevents Emacs from making any sound at all.\n\ 426prevents Emacs from making any sound at all.
427SOUND is nil to use the normal beep.") 427SOUND is nil to use the normal beep. */)
428 (sound) 428 (sound)
429 Lisp_Object sound; 429 Lisp_Object sound;
430{ 430{
@@ -682,7 +682,7 @@ initialize_w32_display (void)
682} 682}
683 683
684DEFUN ("set-screen-color", Fset_screen_color, Sset_screen_color, 2, 2, 0, 684DEFUN ("set-screen-color", Fset_screen_color, Sset_screen_color, 2, 2, 0,
685 "Set screen colors.") 685 doc: /* Set screen colors. */)
686 (foreground, background) 686 (foreground, background)
687 Lisp_Object foreground; 687 Lisp_Object foreground;
688 Lisp_Object background; 688 Lisp_Object background;
@@ -694,7 +694,7 @@ DEFUN ("set-screen-color", Fset_screen_color, Sset_screen_color, 2, 2, 0,
694} 694}
695 695
696DEFUN ("set-cursor-size", Fset_cursor_size, Sset_cursor_size, 1, 1, 0, 696DEFUN ("set-cursor-size", Fset_cursor_size, Sset_cursor_size, 1, 1, 0,
697 "Set cursor size.") 697 doc: /* Set cursor size. */)
698 (size) 698 (size)
699 Lisp_Object size; 699 Lisp_Object size;
700{ 700{
@@ -728,11 +728,11 @@ syms_of_ntterm ()
728{ 728{
729 DEFVAR_BOOL ("w32-use-full-screen-buffer", 729 DEFVAR_BOOL ("w32-use-full-screen-buffer",
730 &w32_use_full_screen_buffer, 730 &w32_use_full_screen_buffer,
731 "Non-nil means make terminal frames use the full screen buffer dimensions.\n\ 731 doc: /* Non-nil means make terminal frames use the full screen buffer dimensions.
732This is desirable when running Emacs over telnet, and is the default.\n\ 732This is desirable when running Emacs over telnet, and is the default.
733A value of nil means use the current console window dimensions; this\n\ 733A value of nil means use the current console window dimensions; this
734may be preferrable when working directly at the console with a large\n\ 734may be preferrable when working directly at the console with a large
735scroll-back buffer."); 735scroll-back buffer. */);
736 w32_use_full_screen_buffer = 1; 736 w32_use_full_screen_buffer = 1;
737 737
738 defsubr (&Sset_screen_color); 738 defsubr (&Sset_screen_color);