aboutsummaryrefslogtreecommitdiffstats
path: root/src/msdos.c
diff options
context:
space:
mode:
authorPavel Janík2001-12-11 06:23:50 +0000
committerPavel Janík2001-12-11 06:23:50 +0000
commit70da46c31cfe29505f9e2cb6f3ef44dc260b3898 (patch)
tree5ff292f6030474f94251450300bc48b974e94394 /src/msdos.c
parent3ab8acb9c0ae86cf549a7a03c029c279172c6e67 (diff)
downloademacs-70da46c31cfe29505f9e2cb6f3ef44dc260b3898.tar.gz
emacs-70da46c31cfe29505f9e2cb6f3ef44dc260b3898.zip
Change doc-string comments to `new style' [w/`doc:' keyword].
Diffstat (limited to 'src/msdos.c')
-rw-r--r--src/msdos.c54
1 files changed, 27 insertions, 27 deletions
diff --git a/src/msdos.c b/src/msdos.c
index 68386b95581..da39c9a99fa 100644
--- a/src/msdos.c
+++ b/src/msdos.c
@@ -189,11 +189,11 @@ mouse_setup_buttons (int n_buttons)
189 189
190DEFUN ("msdos-set-mouse-buttons", Fmsdos_set_mouse_buttons, Smsdos_set_mouse_buttons, 190DEFUN ("msdos-set-mouse-buttons", Fmsdos_set_mouse_buttons, Smsdos_set_mouse_buttons,
191 1, 1, "NSet number of mouse buttons to: ", 191 1, 1, "NSet number of mouse buttons to: ",
192 "Set the number of mouse buttons to use by Emacs.\n\ 192 doc: /* Set the number of mouse buttons to use by Emacs.
193This is useful with mice that report the number of buttons inconsistently,\n\ 193This is useful with mice that report the number of buttons inconsistently,
194e.g., if the number of buttons is reported as 3, but Emacs only sees 2 of\n\ 194e.g., if the number of buttons is reported as 3, but Emacs only sees 2 of
195them. This happens with wheeled mice on Windows 9X, for example.") 195them. This happens with wheeled mice on Windows 9X, for example. */)
196 (nbuttons) 196 (nbuttons)
197 Lisp_Object nbuttons; 197 Lisp_Object nbuttons;
198{ 198{
199 int n; 199 int n;
@@ -2290,7 +2290,7 @@ IT_set_terminal_window (int foo)
2290 default colors for newly-created frames. */ 2290 default colors for newly-created frames. */
2291DEFUN ("msdos-remember-default-colors", Fmsdos_remember_default_colors, 2291DEFUN ("msdos-remember-default-colors", Fmsdos_remember_default_colors,
2292 Smsdos_remember_default_colors, 1, 1, 0, 2292 Smsdos_remember_default_colors, 1, 1, 0,
2293 "Remember the screen colors of the current frame.") 2293 doc: /* Remember the screen colors of the current frame. */)
2294 (frame) 2294 (frame)
2295 Lisp_Object frame; 2295 Lisp_Object frame;
2296{ 2296{
@@ -3124,9 +3124,9 @@ int total_doskeys; /* Total number of elements stored into recent_doskeys */
3124Lisp_Object recent_doskeys; /* A vector, holding the last 100 keystrokes */ 3124Lisp_Object recent_doskeys; /* A vector, holding the last 100 keystrokes */
3125 3125
3126DEFUN ("recent-doskeys", Frecent_doskeys, Srecent_doskeys, 0, 0, 0, 3126DEFUN ("recent-doskeys", Frecent_doskeys, Srecent_doskeys, 0, 0, 0,
3127 "Return vector of last 100 keyboard input values seen in dos_rawgetc.\n\ 3127 doc: /* Return vector of last 100 keyboard input values seen in dos_rawgetc.
3128Each input key receives two values in this vector: first the ASCII code,\n\ 3128Each input key receives two values in this vector: first the ASCII code,
3129and then the scan code.") 3129and then the scan code. */)
3130 () 3130 ()
3131{ 3131{
3132 Lisp_Object *keys = XVECTOR (recent_doskeys)->contents; 3132 Lisp_Object *keys = XVECTOR (recent_doskeys)->contents;
@@ -4336,9 +4336,9 @@ int _rename(const char *old, const char *new)
4336#endif /* __DJGPP__ == 2 && __DJGPP_MINOR__ == 0 */ 4336#endif /* __DJGPP__ == 2 && __DJGPP_MINOR__ == 0 */
4337 4337
4338DEFUN ("msdos-long-file-names", Fmsdos_long_file_names, Smsdos_long_file_names, 4338DEFUN ("msdos-long-file-names", Fmsdos_long_file_names, Smsdos_long_file_names,
4339 0, 0, 0, 4339 0, 0, 0,
4340 "Return non-nil if long file names are supported on MSDOS.") 4340 doc: /* Return non-nil if long file names are supported on MSDOS. */)
4341 () 4341 ()
4342{ 4342{
4343 return (_USE_LFN ? Qt : Qnil); 4343 return (_USE_LFN ? Qt : Qnil);
4344} 4344}
@@ -4369,11 +4369,11 @@ msdos_downcase_filename (p)
4369 4369
4370DEFUN ("msdos-downcase-filename", Fmsdos_downcase_filename, Smsdos_downcase_filename, 4370DEFUN ("msdos-downcase-filename", Fmsdos_downcase_filename, Smsdos_downcase_filename,
4371 1, 1, 0, 4371 1, 1, 0,
4372 "Convert alphabetic characters in FILENAME to lower case and return that.\n\ 4372 doc: /* Convert alphabetic characters in FILENAME to lower case and return that.
4373When long filenames are supported, doesn't change FILENAME.\n\ 4373When long filenames are supported, doesn't change FILENAME.
4374If FILENAME is not a string, returns nil.\n\ 4374If FILENAME is not a string, returns nil.
4375The argument object is never altered--the value is a copy.") 4375The argument object is never altered--the value is a copy. */)
4376 (filename) 4376 (filename)
4377 Lisp_Object filename; 4377 Lisp_Object filename;
4378{ 4378{
4379 Lisp_Object tem; 4379 Lisp_Object tem;
@@ -5297,13 +5297,13 @@ syms_of_msdos ()
5297 help_echo_pos = -1; 5297 help_echo_pos = -1;
5298 5298
5299 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path, 5299 DEFVAR_LISP ("x-bitmap-file-path", &Vx_bitmap_file_path,
5300 "List of directories to search for bitmap files for X."); 5300 doc: /* List of directories to search for bitmap files for X. */);
5301 Vx_bitmap_file_path = decode_env_path ((char *) 0, "."); 5301 Vx_bitmap_file_path = decode_env_path ((char *) 0, ".");
5302 5302
5303 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p, 5303 DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p,
5304 "*Non-nil means draw block cursor as wide as the glyph under it.\n\ 5304 doc: /* *Non-nil means draw block cursor as wide as the glyph under it.
5305For example, if a block cursor is over a tab, it will be drawn as\n\ 5305For example, if a block cursor is over a tab, it will be drawn as
5306wide as that tab on the display. (No effect on MS-DOS.)"); 5306wide as that tab on the display. (No effect on MS-DOS.) */);
5307 x_stretch_cursor_p = 0; 5307 x_stretch_cursor_p = 0;
5308 5308
5309 /* The following two are from xfns.c: */ 5309 /* The following two are from xfns.c: */
@@ -5315,15 +5315,15 @@ wide as that tab on the display. (No effect on MS-DOS.)");
5315 staticpro (&Qreverse); 5315 staticpro (&Qreverse);
5316 5316
5317 DEFVAR_LISP ("dos-unsupported-char-glyph", &Vdos_unsupported_char_glyph, 5317 DEFVAR_LISP ("dos-unsupported-char-glyph", &Vdos_unsupported_char_glyph,
5318 "*Glyph to display instead of chars not supported by current codepage.\n\ 5318 doc: /* *Glyph to display instead of chars not supported by current codepage.
5319\n\ 5319
5320This variable is used only by MSDOS terminals."); 5320This variable is used only by MSDOS terminals. */);
5321 Vdos_unsupported_char_glyph = '\177'; 5321 Vdos_unsupported_char_glyph = '\177';
5322#endif 5322#endif
5323#ifndef subprocesses 5323#ifndef subprocesses
5324 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes, 5324 DEFVAR_BOOL ("delete-exited-processes", &delete_exited_processes,
5325 "*Non-nil means delete processes immediately when they exit.\n\ 5325 doc: /* *Non-nil means delete processes immediately when they exit.
5326nil means don't delete them until `list-processes' is run."); 5326nil means don't delete them until `list-processes' is run. */);
5327 delete_exited_processes = 0; 5327 delete_exited_processes = 0;
5328#endif 5328#endif
5329 5329