all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ben McGinnes <ben@adversary.org>
To: Noam Postavsky <npostavs@users.sourceforge.net>
Cc: Emacs developers <emacs-devel@gnu.org>
Subject: Re: Emacs 26 MacOS bugs
Date: Wed, 7 Feb 2018 09:30:09 +1100	[thread overview]
Message-ID: <20180206223009.xmydcfq6msslewau@adversary.org> (raw)
In-Reply-To: <20180206222722.5uf43fd56p44dk5z@adversary.org>


[-- Attachment #1.1: Type: text/plain, Size: 644 bytes --]

On Wed, Feb 07, 2018 at 09:27:22AM +1100, Ben McGinnes wrote:
> 
> Getting the most recent commit to build on Mavericks (with path update
> at build time) isn't actually a problem.
> 
> It will build and it will load ... it'll even load enough of my init
> to reach the theme at the end ... but I wouldn't exactly describe it
> as functional.  What could be extracted from that is in the attached
> org-file.  I was, however able to identify the bytecomp failure (which
> was also what wreaked havoc on the ERC+ZNC connection infinite loop.

Erm, it would, of course, help to actually attach the damned thing ...


Regards,
Ben

[-- Attachment #1.2: emacs27-osx10_9-20180205-01.org --]
[-- Type: text/plain, Size: 3498 bytes --]

* Failures of Feb build of master

** Version

GNU Emacs 27.0.50 (build 1, x86_64-apple-darwin13.4.0, NS appkit-1265.21 Version 10.9.5 (Build 13F1911)) of 2018-02-07

GNU Emacs 27.0.50 (build 1, x86_64-apple-darwin13.4.0, NS
appkit-1265.21 Version 10.9.5 (Build 13F1911)) of 2018-02-07

*** Commit

commit 5c414441ed73f1a302a2953dc493e83b98589262 (HEAD -> master, origin/master, origin/HEAD)
Author: Paul Eggert <eggert@cs.ucla.edu>
Date:   Mon Feb 5 16:27:24 2018 -0800

    Work around macOS faccessat bug

    * src/fileio.c (file_accessible_directory_p): Append an
    extra "/" to work around macOS bug in faccessat (Bug#30350).


** Messages

For information about GNU Emacs and the GNU system, type C-h C-a.
Loading /Users/ben/.emacs...
Loading /Users/ben/.emacs-init/config/modes-non-packages.el (source)...done
Loading /Users/ben/.emacs-init/config/repos.el (source)...done
Loading /Users/ben/.emacs-init/config/modes-non-melpa.el (source)...done
Created magit link.
Loading /Users/ben/.emacs-init/config/modes-non-proxy.el (source)...
Failed to start an edit-server
Loading /Users/ben/.emacs-init/config/modes-non-proxy.el (source)...done
Loading /Users/ben/.emacs-init/config/modes.el (source)...done
Loading /Users/ben/.emacs-init/config/functions.el (source)...done
Loading /Users/ben/.emacs-init/config/globals.el (source)...done
Loading /Users/ben/.emacs-init/config/fonts.el (source)...done
Loading /Users/ben/.emacs-init/config/custom-dev.el (source)...
Loading time...done
Loading winner...done
Loading /Users/ben/.emacs.d/recentf...done
Cleaning up the recentf list...done (0 removed)
Loading /Users/ben/.emacs-init/config/custom-dev.el (source)...done
Loading /Users/ben/.emacs-init/config/theme.el (source)...
Loading /Users/ben/.emacs.d/elpa/color-theme-20080305.34/themes/color-theme-example.el (source)...done
Loading /Users/ben/.emacs.d/elpa/color-theme-20080305.34/themes/color-theme-example.elc...done
Loading /Users/ben/.emacs.d/elpa/color-theme-20080305.34/themes/color-theme-library.el (source)...done
Loading /Users/ben/.emacs.d/elpa/color-theme-20080305.34/themes/color-theme-library.elc...done
Loading /Users/ben/.emacs-init/config/theme.el (source)...done
Loading /Users/ben/.emacs...done
<H-f1> is undefined
<H-up> is undefined
Entering debugger...
Back to top level
<H-up> is undefined
<H-down> is undefined
Loading /Users/ben/.emacs-init/config/globals.el (source)...done
You can run the command ‘load-file’ with <f6>
Loading /Users/ben/.emacs-init/config/globals.el (source)...done
<H-f1> is undefined
Quit [2 times]


** Compile Log

~/.emacs.d/gitpacks/znc/znc.el:Warning: value returned from (get-buffer
    wants-name) is unused

*** ZNC function causing that

(defadvice erc-server-reconnect (after znc-erc-rename last nil activate)
  "Maybe rename the buffer we create"
  (let* ((wants-name (and (local-variable-p 'znc-buffer-name (erc-server-buffer))
                          (buffer-local-value 'znc-buffer-name (erc-server-buffer))))
         (current (erc-server-buffer))
         (returning ad-return-value))
    (if wants-name
        (progn
          (ignore-errors (znc-kill-buffer-always wants-name))
          (with-current-buffer returning
            (znc-set-name wants-name)
            (rename-buffer wants-name))
          (get-buffer wants-name))
      returning)))

See the second last line.  This is what fails when ERC has its infinite loop.


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

  reply	other threads:[~2018-02-06 22:30 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-06 14:49 Emacs 26 MacOS bugs Richard Stallman
2018-02-06 17:30 ` Noam Postavsky
2018-02-06 23:28   ` Paul Eggert
2018-02-07  3:37     ` Eli Zaretskii
2018-02-10 14:55     ` Uwe Brauer
2018-02-10 15:18       ` Noam Postavsky
2018-02-07  3:52   ` Eli Zaretskii
2018-02-06 19:05 ` Ben McGinnes
2018-02-06 20:30   ` Noam Postavsky
2018-02-06 22:27     ` Ben McGinnes
2018-02-06 22:30       ` Ben McGinnes [this message]
2018-02-06 22:50       ` Noam Postavsky
2018-02-07  0:43         ` Ben McGinnes
2018-02-07  1:33           ` Noam Postavsky
2018-02-07  2:13             ` Ben McGinnes
2018-02-07 22:55               ` Alan Third
2018-02-09 16:35                 ` Ben McGinnes
2018-02-09 16:57                   ` Noam Postavsky
2018-02-09 17:22                     ` Ben McGinnes
2018-02-09 18:13                       ` Noam Postavsky
2018-02-10  1:46                         ` Ben McGinnes
2018-02-10  1:47                   ` Alan Third
2018-02-11 13:53                 ` Philipp Stephani
2018-02-11 21:06                   ` Alan Third
2018-02-07 20:01     ` Alan Third
2018-02-10 15:01     ` Alan Third
2018-02-10 22:45 ` Alan Third
2018-02-11 11:47   ` Alan Third
2018-02-11 15:52     ` Eli Zaretskii
2018-02-11 20:57       ` Alan Third
2018-02-13 19:41         ` Ben McGinnes
2018-02-13 19:46           ` Noam Postavsky
2018-02-11 20:43   ` Richard Stallman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180206223009.xmydcfq6msslewau@adversary.org \
    --to=ben@adversary.org \
    --cc=emacs-devel@gnu.org \
    --cc=npostavs@users.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.