aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-21 20:22:10 +0000
committerRichard M. Stallman1993-05-21 20:22:10 +0000
commitaf01ef26430d69c04421aac4d862df4f5898a838 (patch)
treecbfd125d66d4ee0259e68043e18a67f5e80887d2 /src
parentb411b5fa8d84f71f1e593b38272c20d23fd86405 (diff)
downloademacs-af01ef26430d69c04421aac4d862df4f5898a838.tar.gz
emacs-af01ef26430d69c04421aac4d862df4f5898a838.zip
(syms_of_xfns): Don't make Lisp vars
x-mode-pointer-shape and x-nontext-pointer-shape.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 0aa98ed41a1..9c417b28ac5 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -3746,15 +3746,21 @@ syms_of_xfns ()
3746 mouse_buffer_offset = 0; 3746 mouse_buffer_offset = 0;
3747 3747
3748 DEFVAR_INT ("x-pointer-shape", &Vx_pointer_shape, 3748 DEFVAR_INT ("x-pointer-shape", &Vx_pointer_shape,
3749 "The shape of the pointer when over text."); 3749 "The shape of the pointer when over text.\n\
3750Changing the value does not affect existing frames\n\
3751unless you set the mouse color.");
3750 Vx_pointer_shape = Qnil; 3752 Vx_pointer_shape = Qnil;
3751 3753
3754#if 0
3752 DEFVAR_INT ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape, 3755 DEFVAR_INT ("x-nontext-pointer-shape", &Vx_nontext_pointer_shape,
3753 "The shape of the pointer when not over text."); 3756 "The shape of the pointer when not over text.");
3757#endif
3754 Vx_nontext_pointer_shape = Qnil; 3758 Vx_nontext_pointer_shape = Qnil;
3755 3759
3760#if 0
3756 DEFVAR_INT ("x-mode-pointer-shape", &Vx_mode_pointer_shape, 3761 DEFVAR_INT ("x-mode-pointer-shape", &Vx_mode_pointer_shape,
3757 "The shape of the pointer when over the mode line."); 3762 "The shape of the pointer when over the mode line.");
3763#endif
3758 Vx_mode_pointer_shape = Qnil; 3764 Vx_mode_pointer_shape = Qnil;
3759 3765
3760 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel, 3766 DEFVAR_LISP ("x-cursor-fore-pixel", &Vx_cursor_fore_pixel,