aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS3
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/cus-start.el1
-rw-r--r--src/ChangeLog4
-rw-r--r--src/nsterm.m3
5 files changed, 14 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 263ab2eff3b..c48af3a3b40 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -162,6 +162,9 @@ cannot be encoded by the `terminal-coding-system'.
162 162
163** On graphical displays, the mode-line no longer ends in dashes. 163** On graphical displays, the mode-line no longer ends in dashes.
164 164
165** On Nextstep/OSX, the menu bar can be hidden by customizing
166 ns-auto-hide-menu-bar.
167
165** Basic SELinux support has been added. 168** Basic SELinux support has been added.
166This requires Emacs to be linked with libselinux at build time. 169This requires Emacs to be linked with libselinux at build time.
167 170
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f6d06821062..a8838161136 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12011-03-27 Jan Djärv <jan.h.d@swipnet.se>
2
3 * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
4
12011-03-27 Leo Liu <sdl.web@gmail.com> 52011-03-27 Leo Liu <sdl.web@gmail.com>
2 6
3 * ansi-color.el (ansi-color-names-vector): Allow cons cell value 7 * ansi-color.el (ansi-color-names-vector): Allow cons cell value
diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 788731e4dbc..1188d37150a 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -356,6 +356,7 @@ Leaving \"Default\" unchecked is equivalent with specifying a default of
356 (const alt) (const hyper) 356 (const alt) (const hyper)
357 (const super)) "23.1") 357 (const super)) "23.1")
358 (ns-antialias-text ns boolean "23.1") 358 (ns-antialias-text ns boolean "23.1")
359 (ns-auto-hide-menu-bar ns boolean "24.0")
359 ;; process.c 360 ;; process.c
360 (delete-exited-processes processes-basics boolean) 361 (delete-exited-processes processes-basics boolean)
361 ;; syntax.c 362 ;; syntax.c
diff --git a/src/ChangeLog b/src/ChangeLog
index 96f60877fce..0ed011884ca 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12011-03-27 Jan Djärv <jan.h.d@swipnet.se>
2
3 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
4
12011-03-27 Anders Lindgren <andlind@gmail.com> 52011-03-27 Anders Lindgren <andlind@gmail.com>
2 6
3 * nsterm.m (ns_menu_bar_is_hidden): New variable. 7 * nsterm.m (ns_menu_bar_is_hidden): New variable.
diff --git a/src/nsterm.m b/src/nsterm.m
index ebfa875ae0e..91f0cbba585 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -6486,7 +6486,8 @@ allowing it to be used at a lower level for accented character entry.");
6486 last_mouse_motion_frame = Qnil; 6486 last_mouse_motion_frame = Qnil;
6487 6487
6488 DEFVAR_LISP ("ns-auto-hide-menu-bar", ns_auto_hide_menu_bar, 6488 DEFVAR_LISP ("ns-auto-hide-menu-bar", ns_auto_hide_menu_bar,
6489 "Non-nil means that the menu bar is hidden, but appears when the mouse is near. Only works on OSX 10.6 or later."); 6489 doc: /* Non-nil means that the menu bar is hidden, but appears when the mouse is near.
6490Only works on OSX 10.6 or later. */);
6490 ns_auto_hide_menu_bar = Qnil; 6491 ns_auto_hide_menu_bar = Qnil;
6491 6492
6492 /* TODO: move to common code */ 6493 /* TODO: move to common code */