From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: VanL Newsgroups: gmane.emacs.devel Subject: Re: Emacs Mac port Date: Thu, 05 Dec 2019 18:03:37 +1100 Organization: BMF Prizefighter 'President' Trump 2020 Keep America Great =?utf-8?B?yZnJmTBA?= Ultimat Fighting Cybr Message-ID: References: <0100016ecaff2ce1-0e196691-7294-4b32-bb3a-f63572d3ece8-000000@email.amazonses.com> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="194713"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (darwin) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Dec 05 08:04:59 2019 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iclC7-000oPO-Ei for ged-emacs-devel@m.gmane.org; Thu, 05 Dec 2019 08:04:59 +0100 Original-Received: from localhost ([::1]:50814 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iclC5-0003F7-UH for ged-emacs-devel@m.gmane.org; Thu, 05 Dec 2019 02:04:57 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:40874) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iclBC-0003Er-Di for emacs-devel@gnu.org; Thu, 05 Dec 2019 02:04:03 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iclBA-0006Ri-2u for emacs-devel@gnu.org; Thu, 05 Dec 2019 02:04:01 -0500 Original-Received: from 195-159-176-226.customer.powertech.no ([195.159.176.226]:49202 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iclB7-0006Jj-VU for emacs-devel@gnu.org; Thu, 05 Dec 2019 02:03:58 -0500 Original-Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1iclAv-000n6O-7n for emacs-devel@gnu.org; Thu, 05 Dec 2019 08:03:45 +0100 X-Injected-Via-Gmane: http://gmane.org/ Cancel-Lock: sha1:QBBtmgfrh37J3rZFJ0mzoR7E0ag= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 195.159.176.226 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:243143 Archived-At: VanL writes: >> (say, $ open /Applications/MacPorts/EmacsMac.app --args -Q) > > Starting EmacsMac.app as suggested allows the expected, desired > behavior. > > Something in my customization has introduced the undesired behavior. Commenting out '(menu-bar-mode nil) returns the expected, desired behavior. #+BEGIN_SRC emacs-lisp (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(canlock-password "600dcbcafd9de585fe73fa9e0b97b5bec1f2dab1") '(display-buffer-reuse-frames t) '(electric-indent-mode nil) '(epa-pinentry-mode (quote loopback)) '(gnus-summary-line-format "%U%R%z%I%(%[%4L: %-2,2f%]%) %s ") '(mac-command-modifier (quote alt)) '(mac-option-modifier (quote meta)) '(mac-right-command-modifier (quote super)) '(mac-right-option-modifier (quote hyper)) ;; '(menu-bar-mode nil) ;; xxx '(org-return-follows-link t) '(ring-bell-function (quote ignore)) '(safe-local-variable-values (quote ((eval auto-revert-mode t)))) '(same-window-buffer-names (quote ("*vc-diff*" "*vc-change-log*"))) '(scroll-bar-mode nil) '(tool-bar-mode nil)) #+END_SRC