diff options
| author | Jason Rumney | 2001-11-12 23:57:09 +0000 |
|---|---|---|
| committer | Jason Rumney | 2001-11-12 23:57:09 +0000 |
| commit | 33f096701c84fc754bf5486cd2743dd030f5eb4a (patch) | |
| tree | 8b94db4dad6b9dd0a7e94d0a492fea091d4f0f26 /src/w32term.c | |
| parent | b6f4c7ba9cef461e5c827cb3f485ad82445ff85a (diff) | |
| download | emacs-33f096701c84fc754bf5486cd2743dd030f5eb4a.tar.gz emacs-33f096701c84fc754bf5486cd2743dd030f5eb4a.zip | |
Change doc-string comments to `new style'. [w/`doc:' keyword]. Doc fixes.
Diffstat (limited to 'src/w32term.c')
| -rw-r--r-- | src/w32term.c | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/src/w32term.c b/src/w32term.c index 1c6b35f14aa..3a60008ab12 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -10925,43 +10925,43 @@ syms_of_w32term () | |||
| 10925 | 10925 | ||
| 10926 | DEFVAR_INT ("w32-num-mouse-buttons", | 10926 | DEFVAR_INT ("w32-num-mouse-buttons", |
| 10927 | &Vw32_num_mouse_buttons, | 10927 | &Vw32_num_mouse_buttons, |
| 10928 | "Number of physical mouse buttons."); | 10928 | doc: /* Number of physical mouse buttons. */); |
| 10929 | Vw32_num_mouse_buttons = Qnil; | 10929 | Vw32_num_mouse_buttons = Qnil; |
| 10930 | 10930 | ||
| 10931 | DEFVAR_LISP ("w32-swap-mouse-buttons", | 10931 | DEFVAR_LISP ("w32-swap-mouse-buttons", |
| 10932 | &Vw32_swap_mouse_buttons, | 10932 | &Vw32_swap_mouse_buttons, |
| 10933 | "Swap the mapping of middle and right mouse buttons.\n\ | 10933 | doc: /* Swap the mapping of middle and right mouse buttons. |
| 10934 | When nil, middle button is mouse-2 and right button is mouse-3."); | 10934 | When nil, middle button is mouse-2 and right button is mouse-3. */); |
| 10935 | Vw32_swap_mouse_buttons = Qnil; | 10935 | Vw32_swap_mouse_buttons = Qnil; |
| 10936 | 10936 | ||
| 10937 | DEFVAR_LISP ("w32-grab-focus-on-raise", | 10937 | DEFVAR_LISP ("w32-grab-focus-on-raise", |
| 10938 | &Vw32_grab_focus_on_raise, | 10938 | &Vw32_grab_focus_on_raise, |
| 10939 | "Raised frame grabs input focus.\n\ | 10939 | doc: /* Raised frame grabs input focus. |
| 10940 | When t, `raise-frame' grabs input focus as well. This fits well\n\ | 10940 | When t, `raise-frame' grabs input focus as well. This fits well |
| 10941 | with the normal Windows click-to-focus policy, but might not be\n\ | 10941 | with the normal Windows click-to-focus policy, but might not be |
| 10942 | desirable when using a point-to-focus policy."); | 10942 | desirable when using a point-to-focus policy. */); |
| 10943 | Vw32_grab_focus_on_raise = Qt; | 10943 | Vw32_grab_focus_on_raise = Qt; |
| 10944 | 10944 | ||
| 10945 | DEFVAR_LISP ("w32-capslock-is-shiftlock", | 10945 | DEFVAR_LISP ("w32-capslock-is-shiftlock", |
| 10946 | &Vw32_capslock_is_shiftlock, | 10946 | &Vw32_capslock_is_shiftlock, |
| 10947 | "Apply CapsLock state to non character input keys.\n\ | 10947 | doc: /* Apply CapsLock state to non character input keys. |
| 10948 | When nil, CapsLock only affects normal character input keys."); | 10948 | When nil, CapsLock only affects normal character input keys. */); |
| 10949 | Vw32_capslock_is_shiftlock = Qnil; | 10949 | Vw32_capslock_is_shiftlock = Qnil; |
| 10950 | 10950 | ||
| 10951 | DEFVAR_LISP ("w32-recognize-altgr", | 10951 | DEFVAR_LISP ("w32-recognize-altgr", |
| 10952 | &Vw32_recognize_altgr, | 10952 | &Vw32_recognize_altgr, |
| 10953 | "Recognize right-alt and left-ctrl as AltGr.\n\ | 10953 | doc: /* Recognize right-alt and left-ctrl as AltGr. |
| 10954 | When nil, the right-alt and left-ctrl key combination is\n\ | 10954 | When nil, the right-alt and left-ctrl key combination is |
| 10955 | interpreted normally."); | 10955 | interpreted normally. */); |
| 10956 | Vw32_recognize_altgr = Qt; | 10956 | Vw32_recognize_altgr = Qt; |
| 10957 | 10957 | ||
| 10958 | DEFVAR_BOOL ("w32-enable-unicode-output", | 10958 | DEFVAR_BOOL ("w32-enable-unicode-output", |
| 10959 | &w32_enable_unicode_output, | 10959 | &w32_enable_unicode_output, |
| 10960 | "Enable the use of Unicode for text output if non-nil.\n\ | 10960 | doc: /* Enable the use of Unicode for text output if non-nil. |
| 10961 | Unicode output may prevent some third party applications for displaying\n\ | 10961 | Unicode output may prevent some third party applications for displaying |
| 10962 | Far-East Languages on Windows 95/98 from working properly.\n\ | 10962 | Far-East Languages on Windows 95/98 from working properly. |
| 10963 | NT uses Unicode internally anyway, so this flag will probably have no\n\ | 10963 | NT uses Unicode internally anyway, so this flag will probably have no |
| 10964 | affect on NT machines."); | 10964 | affect on NT machines. */); |
| 10965 | w32_enable_unicode_output = 1; | 10965 | w32_enable_unicode_output = 1; |
| 10966 | 10966 | ||
| 10967 | help_echo = Qnil; | 10967 | help_echo = Qnil; |
| @@ -10975,23 +10975,23 @@ affect on NT machines."); | |||
| 10975 | help_echo_pos = -1; | 10975 | help_echo_pos = -1; |
| 10976 | 10976 | ||
| 10977 | DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p, | 10977 | DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p, |
| 10978 | "*Non-nil means draw block cursor as wide as the glyph under it.\n\ | 10978 | doc: /* *Non-nil means draw block cursor as wide as the glyph under it. |
| 10979 | For example, if a block cursor is over a tab, it will be drawn as\n\ | 10979 | For example, if a block cursor is over a tab, it will be drawn as |
| 10980 | wide as that tab on the display."); | 10980 | wide as that tab on the display. */); |
| 10981 | x_stretch_cursor_p = 0; | 10981 | x_stretch_cursor_p = 0; |
| 10982 | 10982 | ||
| 10983 | #if 0 /* TODO: Setting underline position from font properties. */ | 10983 | #if 0 /* TODO: Setting underline position from font properties. */ |
| 10984 | DEFVAR_BOOL ("x-use-underline-position-properties", | 10984 | DEFVAR_BOOL ("x-use-underline-position-properties", |
| 10985 | &x_use_underline_position_properties, | 10985 | &x_use_underline_position_properties, |
| 10986 | "*Non-nil means make use of UNDERLINE_POSITION font properties.\n\ | 10986 | doc: /* *Non-nil means make use of UNDERLINE_POSITION font properties. |
| 10987 | Nil means ignore them. If you encounter fonts with bogus\n\ | 10987 | Nil means ignore them. If you encounter fonts with bogus |
| 10988 | UNDERLINE_POSITION font properties, for example 7x13 on XFree prior\n\ | 10988 | UNDERLINE_POSITION font properties, for example 7x13 on XFree prior |
| 10989 | to 4.1, set this to nil."); | 10989 | to 4.1, set this to nil. */); |
| 10990 | x_use_underline_position_properties = 1; | 10990 | x_use_underline_position_properties = 1; |
| 10991 | #endif | 10991 | #endif |
| 10992 | 10992 | ||
| 10993 | DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars, | 10993 | DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars, |
| 10994 | "If not nil, Emacs uses toolkit scroll bars."); | 10994 | doc: /* If not nil, Emacs uses toolkit scroll bars. */); |
| 10995 | Vx_toolkit_scroll_bars = Qt; | 10995 | Vx_toolkit_scroll_bars = Qt; |
| 10996 | 10996 | ||
| 10997 | staticpro (&last_mouse_motion_frame); | 10997 | staticpro (&last_mouse_motion_frame); |