diff options
author | Glenn Morris <rgm@gnu.org> | 2010-10-23 18:15:43 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2010-10-23 18:15:43 -0700 |
commit | 65807d733424d31514780c4e2c7b902e93561126 (patch) | |
tree | f4a7b714d95182b81738d9c0c4e42b2c68fdf241 /src/w32term.c | |
parent | ec51400782d909f06be58d3ea1f2552136dd1927 (diff) | |
download | emacs-65807d733424d31514780c4e2c7b902e93561126.tar.gz |
Sync X and MS-Windows docs of x-toolkit-scroll-bars.
* src/w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
* src/xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
Diffstat (limited to 'src/w32term.c')
-rw-r--r-- | src/w32term.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/w32term.c b/src/w32term.c index 1f53860de2e..e9865ed7aee 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -1,7 +1,8 @@ /* Implementation of GUI terminal on the Microsoft W32 API. - Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001, 2002, 2003, 2004, 2005, - 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. + +Copyright (C) 1989, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, + 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 + Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -6348,12 +6349,14 @@ baseline level. The default value is nil. */); x_underline_at_descent_line = 0; DEFVAR_LISP ("x-toolkit-scroll-bars", &Vx_toolkit_scroll_bars, - doc: /* If not nil, Emacs uses toolkit scroll bars. */); + doc: /* Which toolkit scroll bars Emacs uses, if any. +A value of nil means Emacs doesn't use toolkit scroll bars. +With the X Window system, the value is a symbol describing the +X toolkit. Possible values are: gtk, motif, xaw, or xaw3d. +With MS Windows, the value is t. */); Vx_toolkit_scroll_bars = Qt; staticpro (&last_mouse_motion_frame); last_mouse_motion_frame = Qnil; } -/* arch-tag: 5fa70624-ab86-499c-8a85-473958ee4646 - (do not change this comment) */ |