aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-10-23 14:21:49 -0700
committerGlenn Morris2010-10-23 14:21:49 -0700
commite1fd756baecd8264caf0d68a041c1aa343ea2cb3 (patch)
treec8fe7cc454557e1ebf98b9cb57aff181e9fafdb0
parenta102db1ee5f685946a5a7631dba596246aa82408 (diff)
downloademacs-e1fd756baecd8264caf0d68a041c1aa343ea2cb3.tar.gz
emacs-e1fd756baecd8264caf0d68a041c1aa343ea2cb3.zip
* src/frame.c (syms_of_frame) <menu-bar-mode>: Sync doc with Lisp.
-rw-r--r--src/ChangeLog1
-rw-r--r--src/frame.c14
2 files changed, 10 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index eeac05706f5..2e2d771b792 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,7 @@
12010-10-23 Glenn Morris <rgm@gnu.org> 12010-10-23 Glenn Morris <rgm@gnu.org>
2 2
3 * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>: 3 * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
4 * frame.c (syms_of_frame) <menu-bar-mode>:
4 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode, display-hourglass>: 5 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode, display-hourglass>:
5 <hourglass-delay>: Sync docs with Lisp. 6 <hourglass-delay>: Sync docs with Lisp.
6 7
diff --git a/src/frame.c b/src/frame.c
index ed54d24197f..2489aa91de0 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -1,6 +1,8 @@
1/* Generic frame functions. 1/* Generic frame functions.
2 Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003, 2
3 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 3Copyright (C) 1993, 1994, 1995, 1997, 1999, 2000, 2001, 2002, 2003,
4 2004, 2005, 2006, 2007, 2008, 2009, 2010
5 Free Software Foundation, Inc.
4 6
5This file is part of GNU Emacs. 7This file is part of GNU Emacs.
6 8
@@ -4552,7 +4554,11 @@ recursively). */);
4552 staticpro (&Qdelete_frame_functions); 4554 staticpro (&Qdelete_frame_functions);
4553 4555
4554 DEFVAR_LISP ("menu-bar-mode", &Vmenu_bar_mode, 4556 DEFVAR_LISP ("menu-bar-mode", &Vmenu_bar_mode,
4555 doc: /* Non-nil if Menu-Bar mode is enabled. */); 4557 doc: /* Non-nil if Menu-Bar mode is enabled.
4558See the command `menu-bar-mode' for a description of this minor mode.
4559Setting this variable directly does not take effect;
4560either customize it (see the info node `Easy Customization')
4561or call the function `menu-bar-mode'. */);
4556 Vmenu_bar_mode = Qt; 4562 Vmenu_bar_mode = Qt;
4557 4563
4558 DEFVAR_LISP ("tool-bar-mode", &Vtool_bar_mode, 4564 DEFVAR_LISP ("tool-bar-mode", &Vtool_bar_mode,
@@ -4646,5 +4652,3 @@ automatically. See also `mouse-autoselect-window'. */);
4646 4652
4647} 4653}
4648 4654
4649/* arch-tag: 7dbf2c69-9aad-45f8-8296-db893d6dd039
4650 (do not change this comment) */