emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r103764: Format doc and add customize


From: Jan D.
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r103764: Format doc and add customize for ns-auto-hide-menu-bar.
Date: Sun, 27 Mar 2011 12:55:07 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 103764
committer: Jan D. <address@hidden>
branch nick: trunk
timestamp: Sun 2011-03-27 12:55:07 +0200
message:
  Format doc and add customize for ns-auto-hide-menu-bar.
  
  * lisp/cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
  
  * src/nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
modified:
  etc/NEWS
  lisp/ChangeLog
  lisp/cus-start.el
  src/ChangeLog
  src/nsterm.m
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2011-03-21 16:34:16 +0000
+++ b/etc/NEWS  2011-03-27 10:55:07 +0000
@@ -162,6 +162,9 @@
 
 ** On graphical displays, the mode-line no longer ends in dashes.
 
+** On Nextstep/OSX, the menu bar can be hidden by customizing
+   ns-auto-hide-menu-bar.
+
 ** Basic SELinux support has been added.
 This requires Emacs to be linked with libselinux at build time.
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-03-27 01:56:35 +0000
+++ b/lisp/ChangeLog    2011-03-27 10:55:07 +0000
@@ -1,3 +1,7 @@
+2011-03-27  Jan Djärv  <address@hidden>
+
+       * cus-start.el (all): Add boolean ns-auto-hide-menu-bar.
+
 2011-03-27  Leo Liu  <address@hidden>
 
        * ansi-color.el (ansi-color-names-vector): Allow cons cell value

=== modified file 'lisp/cus-start.el'
--- a/lisp/cus-start.el 2011-03-08 04:34:31 +0000
+++ b/lisp/cus-start.el 2011-03-27 10:55:07 +0000
@@ -356,6 +356,7 @@
                      (const alt) (const hyper)
                      (const super)) "23.1")
             (ns-antialias-text ns boolean "23.1")
+            (ns-auto-hide-menu-bar ns boolean "24.0")
             ;; process.c
             (delete-exited-processes processes-basics boolean)
             ;; syntax.c

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-03-27 10:36:44 +0000
+++ b/src/ChangeLog     2011-03-27 10:55:07 +0000
@@ -1,3 +1,7 @@
+2011-03-27  Jan Djärv  <address@hidden>
+
+       * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
+
 2011-03-27  Anders Lindgren <address@hidden>
 
        * nsterm.m (ns_menu_bar_is_hidden): New variable.

=== modified file 'src/nsterm.m'
--- a/src/nsterm.m      2011-03-27 10:36:44 +0000
+++ b/src/nsterm.m      2011-03-27 10:55:07 +0000
@@ -6486,7 +6486,8 @@
   last_mouse_motion_frame = Qnil;
 
   DEFVAR_LISP ("ns-auto-hide-menu-bar", ns_auto_hide_menu_bar,
-               "Non-nil means that the menu bar is hidden, but appears when 
the mouse is near.  Only works on OSX 10.6 or later.");
+               doc: /* Non-nil means that the menu bar is hidden, but appears 
when the mouse is near.
+Only works on OSX 10.6 or later.  */);
   ns_auto_hide_menu_bar = Qnil;
 
   /* TODO: move to common code */


reply via email to

[Prev in Thread] Current Thread [Next in Thread]