unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-15 19:11 Keith David Bershatsky
  2022-04-17  9:01 ` Mattias Engdegård
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-15 19:11 UTC (permalink / raw)
  To: Emacs Devel

Emacs 28 builds okay on El Capitan, but I am unable to build on OSX 10.6.8 (with Xcode 3.2.6).  Any suggestions on how to overcome this error in the build process would be greatly appreciated.

  AR       libgnu.a
/usr/bin/ranlib: file: libgnu.a(u64.o) has no symbols
/usr/bin/ranlib: file: libgnu.a(unistd.o) has no symbols
ranlib: file: libgnu.a(u64.o) has no symbols
ranlib: file: libgnu.a(unistd.o) has no symbols
/usr/bin/make -C lib-src all
  CCLD     etags
  CCLD     ctags
  CCLD     emacsclient
emacsclient.c: In function 'local_sockname':
emacsclient.c:1415: warning: implicit declaration of function 'openat'
Undefined symbols:
  "_openat", referenced from:
      _local_sockname in ccygiqN2.o
     (maybe you meant: _openat_save_fail, _openat_proc_name , _openat_restore_fail )
ld: symbol(s) not found
collect2: ld returned 1 exit status
make[1]: *** [emacsclient] Error 1
make: *** [lib-src] Error 2

Thanks,

Keith



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-15 19:11 Keith David Bershatsky
@ 2022-04-17  9:01 ` Mattias Engdegård
  2022-04-17 17:49   ` Paul Eggert
  0 siblings, 1 reply; 65+ messages in thread
From: Mattias Engdegård @ 2022-04-17  9:01 UTC (permalink / raw)
  To: Keith David Bershatsky; +Cc: Paul Eggert, Emacs Devel

15 apr. 2022 kl. 21.11 skrev Keith David Bershatsky <esq@lawlist.com>:

> Emacs 28 builds okay on El Capitan, but I am unable to build on OSX 10.6.8 (with Xcode 3.2.6).  Any suggestions on how to overcome this error in the build process would be greatly appreciated.
[...]
> emacsclient.c: In function 'local_sockname':
> emacsclient.c:1415: warning: implicit declaration of function 'openat'
> Undefined symbols:
>  "_openat", referenced from:
>      _local_sockname in ccygiqN2.o
>     (maybe you meant: _openat_save_fail, _openat_proc_name , _openat_restore_fail )
> ld: symbol(s) not found

`openat` was introduced in OS X 10.10, but shouldn't gnulib have a substitute? Paul?





^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-17  9:01 ` Mattias Engdegård
@ 2022-04-17 17:49   ` Paul Eggert
  2022-04-17 19:12     ` Eli Zaretskii
  0 siblings, 1 reply; 65+ messages in thread
From: Paul Eggert @ 2022-04-17 17:49 UTC (permalink / raw)
  To: Mattias Engdegård; +Cc: Keith David Bershatsky, Emacs Devel

[-- Attachment #1: Type: text/plain, Size: 869 bytes --]

On 4/17/22 02:01, Mattias Engdegård wrote:
> `openat` was introduced in OS X 10.10, but shouldn't gnulib have a substitute? Paul?

Gnulib's openat substitute is so heavyweight that Emacs doesn't use it. 
(The substitute implements openat via fchdir-and-fchdir-back which is 
dubious for Emacs.)

Instead of using Gnulib openat, I installed the attached patch into the 
emacs-28 branch so that Emacs uses openat only on platforms like GNU 
that define O_PATH (as these are the only platforms where Emacs passes a 
value other than AT_FDCWD to openat's first argument). I tested this in 
an artificial Fedora environment where I removed O_PATH, and it passed 
'make check', so this should port to OS X 10.9 as well. Please give it a 
try.

PS. Could we somehow arrange for port-to-old-macOS testing to be done 
before an Emacs release, rather than after?

[-- Attachment #2: 0001-Don-t-assume-openat.patch --]
[-- Type: text/x-patch, Size: 3551 bytes --]

From 3cccf0a9107d585173e527550bbc45253624ca2e Mon Sep 17 00:00:00 2001
From: Paul Eggert <eggert@cs.ucla.edu>
Date: Sun, 17 Apr 2022 10:41:17 -0700
Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20assume=20openat?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Use openat only on platforms with O_PATH.
This ports to OS X 10.9 and earlier.
Problem reported by Keith David Bershatsky in:
https://lists.gnu.org/r/emacs-devel/2022-04/msg00805.html
* lib-src/emacsclient.c (local_sockname): Use open, not openat.
* src/sysdep.c (sys_openat): New static function,
which uses openat only if O_PATH is defined.
(emacs_openat): Use it instead of openat.
(emacs_openat_noquit): Remove.
(emacs_open_noquit): Reimplement as per the old emacs_openat_noquit,
but use plain 'open'.
---
 lib-src/emacsclient.c |  3 +--
 src/sysdep.c          | 29 ++++++++++++++++++-----------
 2 files changed, 19 insertions(+), 13 deletions(-)

diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c
index 57a5eff3bf..217a38bc07 100644
--- a/lib-src/emacsclient.c
+++ b/lib-src/emacsclient.c
@@ -1412,8 +1412,7 @@ local_sockname (int s, char sockname[socknamesize], int tmpdirlen,
   char *emacsdirend = sockname + tmpdirlen + suffixlen -
     strlen(server_name) - 1;
   *emacsdirend = '\0';
-  int dir = openat (AT_FDCWD, sockname,
-		    O_PATH | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
+  int dir = open (sockname, O_PATH | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
   *emacsdirend = '/';
   if (dir < 0)
     return errno;
diff --git a/src/sysdep.c b/src/sysdep.c
index 72be25f661..f6d139421a 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -2302,6 +2302,20 @@ emacs_fstatat (int dirfd, char const *filename, void *st, int flags)
   return r;
 }
 
+static int
+sys_openat (int dirfd, char const *file, int oflags, int mode)
+{
+#ifdef O_PATH
+  return openat (dirfd, file, oflags, mode);
+#else
+  /* On platforms without O_PATH, emacs_openat's callers arrange for
+     DIRFD to be AT_FDCWD, so it should be safe to just call 'open'.
+     This ports to old platforms like OS X 10.9 that lack openat.  */
+  eassert (dirfd == AT_FDCWD);
+  return open (file, oflags, mode);
+#endif
+}
+
 /* Assuming the directory DIRFD, open FILE for Emacs use,
    using open flags OFLAGS and mode MODE.
    Use binary I/O on systems that care about text vs binary I/O.
@@ -2317,7 +2331,7 @@ emacs_openat (int dirfd, char const *file, int oflags, int mode)
   if (! (oflags & O_TEXT))
     oflags |= O_BINARY;
   oflags |= O_CLOEXEC;
-  while ((fd = openat (dirfd, file, oflags, mode)) < 0 && errno == EINTR)
+  while ((fd = sys_openat (dirfd, file, oflags, mode)) < 0 && errno == EINTR)
     maybe_quit ();
   return fd;
 }
@@ -2330,26 +2344,19 @@ emacs_open (char const *file, int oflags, int mode)
 
 /* Same as above, but doesn't allow the user to quit.  */
 
-static int
-emacs_openat_noquit (int dirfd, const char *file, int oflags,
-                     int mode)
+int
+emacs_open_noquit (char const *file, int oflags, int mode)
 {
   int fd;
   if (! (oflags & O_TEXT))
     oflags |= O_BINARY;
   oflags |= O_CLOEXEC;
   do
-    fd = openat (dirfd, file, oflags, mode);
+    fd = open (file, oflags, mode);
   while (fd < 0 && errno == EINTR);
   return fd;
 }
 
-int
-emacs_open_noquit (char const *file, int oflags, int mode)
-{
-  return emacs_openat_noquit (AT_FDCWD, file, oflags, mode);
-}
-
 /* Open FILE as a stream for Emacs use, with mode MODE.
    Act like emacs_open with respect to threads, signals, and quits.  */
 
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-17 18:45 Keith David Bershatsky
  2022-04-17 20:37 ` Alan Third
  2022-04-17 20:37 ` Paul Eggert
  0 siblings, 2 replies; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-17 18:45 UTC (permalink / raw)
  To: Paul Eggert; +Cc: Mattias Engdegård, emacs-devel

Thank you.  The latest patch fixed the `openat` build issue on OSX 10.6.8 (with Xcode 3.2.6) using:  ./configure --with-gnutls=ifavailable

The next issue with the build is at nsterm.m.  Would you like me to open a separate email with a new subject title?

Keith

  CC       nsterm.o
In file included from nsterm.m:46:
lisp.h:2084: warning: declaration does not declare anything
nsterm.m: In function 'ns_parent_window_rect':
nsterm.m:737: warning: 'NSWindow' may not respond to '-convertRectToScreen:'
nsterm.m:737: warning: (Messages without a matching method signature
nsterm.m:737: warning: will be assumed to return 'id' and accept
nsterm.m:737: warning: '...' as arguments.)
nsterm.m:737: error: incompatible types in assignment
nsterm.m: In function 'ns_frame_scale_factor':
nsterm.m:775: warning: 'NSWindow' may not respond to '-backingScaleFactor'
nsterm.m:775: error: incompatible types in return
nsterm.m: In function '-[EmacsView makeBackingLayer]':
nsterm.m:7822: warning: 'NSWindow' may not respond to '-backingScaleFactor'
nsterm.m:7822: warning: 'EmacsLayer' may not respond to '-setContentsScale:'
nsterm.m: In function '-[EmacsView lockFocus]':
nsterm.m:7839: warning: 'NSGraphicsContext' may not respond to '+graphicsContextWithCGContext:flipped:'
nsterm.m: In function '-[EmacsView unlockFocus]':
nsterm.m:7861: warning: 'NSView' may not respond to '-flushWindow'
nsterm.m: In function '-[EmacsView windowDidChangeBackingProperties:]':
nsterm.m:7877: warning: no '-backingScaleFactor' method found
nsterm.m:7877: warning: 'EmacsLayer' may not respond to '-setContentsScale:'
nsterm.m: In function '-[EmacsView copyRect:to:]':
nsterm.m:7899: warning: 'NSWindow' may not respond to '-backingScaleFactor'
nsterm.m:7899: error: incompatible types in initialization
nsterm.m: In function '-[EmacsWindow initWithEmacsFrame:fullscreen:screen:]':
nsterm.m:8322: warning: 'EmacsWindow' may not respond to '-setTabbingMode:'
nsterm.m: In function '-[EmacsWindow setParentChildRelationships]':
nsterm.m:8391: error: 'child' undeclared (first use in this function)
nsterm.m:8391: error: (Each undeclared identifier is reported only once
nsterm.m:8391: error: for each function it appears in.)
nsterm.m:8395: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
nsterm.m:8397: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
nsterm.m:8418: error: expected ')' before '{' token
nsterm.m:8431: error: expected expression before '}' token
nsterm.m:8442: error: expected ')' before 'if'
nsterm.m:8448: error: expected expression before '}' token
nsterm.m: In function '-[EmacsLayer dealloc]':
nsterm.m:9441: warning: 'EmacsLayer' may not respond to '-releaseSurfaces'
nsterm.m: In function '-[EmacsLayer releaseSurfaces]':
nsterm.m:9451: warning: 'EmacsLayer' may not respond to '-releaseContext'
nsterm.m: In function '-[EmacsLayer checkDimensions]':
nsterm.m:9473: warning: 'EmacsLayer' may not respond to '-contentsScale'
nsterm.m:9473: error: invalid operands to binary * (have 'CGFloat' and 'id')
nsterm.m:9474: warning: 'EmacsLayer' may not respond to '-contentsScale'
nsterm.m:9474: error: invalid operands to binary * (have 'CGFloat' and 'id')
nsterm.m:9476: warning: 'NSMutableArray' may not respond to '-firstObject'
nsterm.m: In function '-[EmacsLayer getContext]':
nsterm.m:9486: warning: 'EmacsLayer' may not respond to '-contentsScale'
nsterm.m:9486: error: incompatible types in initialization
nsterm.m:9502: warning: implicit declaration of function 'IOSurfaceIsInUse'
nsterm.m:9515: warning: 'NSMutableArray' may not respond to '-firstObject'
nsterm.m:9524: error: stray '@' in program
nsterm.m:9524: warning: initialization from incompatible pointer type
nsterm.m:9524: error: expected '}' before ':' token
nsterm.m:9541: warning: 'EmacsLayer' may not respond to '-copyContentsTo:'
make[1]: *** [nsterm.o] Error 1
make: *** [src] Error 2
~/Desktop/emacs $ 

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-17-2022 10:49:31] <17 Apr 2022 10:49:31 -0700>
> From: Paul Eggert <eggert@cs.ucla.edu>
> To: Mattias Engdegård <mattiase@acm.org>
> Cc: Emacs Devel <emacs-devel@gnu.org>, Keith David Bershatsky <esq@lawlist.com>
> Subject: Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
> 
> On 4/17/22 02:01, Mattias Engdegård wrote:
> > `openat` was introduced in OS X 10.10, but shouldn't gnulib have a substitute? Paul?
> 
> * * *



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-17 17:49   ` Paul Eggert
@ 2022-04-17 19:12     ` Eli Zaretskii
  2022-04-17 20:36       ` Paul Eggert
  0 siblings, 1 reply; 65+ messages in thread
From: Eli Zaretskii @ 2022-04-17 19:12 UTC (permalink / raw)
  To: Paul Eggert; +Cc: mattiase, esq, emacs-devel

> Date: Sun, 17 Apr 2022 10:49:31 -0700
> From: Paul Eggert <eggert@cs.ucla.edu>
> Cc: Keith David Bershatsky <esq@lawlist.com>, Emacs Devel <emacs-devel@gnu.org>
> Instead of using Gnulib openat, I installed the attached patch into the 
> emacs-28 branch so that Emacs uses openat only on platforms like GNU 
> that define O_PATH (as these are the only platforms where Emacs passes a 
> value other than AT_FDCWD to openat's first argument). I tested this in 
> an artificial Fedora environment where I removed O_PATH, and it passed 
> 'make check', so this should port to OS X 10.9 as well. Please give it a 
> try.

I reverted it.  This kind of change on a stable branch, and for the
benefit of an old macOS version on top of that, is unimaginable.  We
use 'open' and 'openat' in many places, and this change affects all of
them.  Please don't make any such changes without discussing them
first.

> PS. Could we somehow arrange for port-to-old-macOS testing to be done 
> before an Emacs release, rather than after?

Hear, hear!  If the pretest period is not used to test on some
platform, users of that platform will have to live with unresolved
bugs.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-17 19:12     ` Eli Zaretskii
@ 2022-04-17 20:36       ` Paul Eggert
  2022-04-18  4:49         ` Eli Zaretskii
  0 siblings, 1 reply; 65+ messages in thread
From: Paul Eggert @ 2022-04-17 20:36 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: mattiase, esq, emacs-devel

On 4/17/22 12:12, Eli Zaretskii wrote:

> We
> use 'open' and 'openat' in many places, and this change affects all of
> them.

I don't see why. The patch affects none of the existing 'open' calls, 
and just three of the 'openat' calls.

Anyway, I moved the patch to the master branch. People who want Emacs 
28.x on older Mac OS X versions can install the patch by hand as needed.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-17 18:45 Keith David Bershatsky
@ 2022-04-17 20:37 ` Alan Third
  2022-04-17 20:37 ` Paul Eggert
  1 sibling, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-17 20:37 UTC (permalink / raw)
  To: Keith David Bershatsky; +Cc: Mattias Engdegård, Paul Eggert, emacs-devel

On Sun, Apr 17, 2022 at 11:45:26AM -0700, Keith David Bershatsky wrote:
> 
> nsterm.m: In function 'ns_parent_window_rect':
> nsterm.m:737: warning: 'NSWindow' may not respond to '-convertRectToScreen:'
> nsterm.m:737: warning: (Messages without a matching method signature
> nsterm.m:737: warning: will be assumed to return 'id' and accept
> nsterm.m:737: warning: '...' as arguments.)
> nsterm.m:737: error: incompatible types in assignment

Can you try emacs-29 to see if it's fixed there, please?
-- 
Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-17 18:45 Keith David Bershatsky
  2022-04-17 20:37 ` Alan Third
@ 2022-04-17 20:37 ` Paul Eggert
  1 sibling, 0 replies; 65+ messages in thread
From: Paul Eggert @ 2022-04-17 20:37 UTC (permalink / raw)
  To: Keith David Bershatsky; +Cc: Mattias Engdegård, emacs-devel

On 4/17/22 11:45, Keith David Bershatsky wrote:
> The next issue with the build is at nsterm.m.  Would you like me to open a separate email with a new subject title?

Yes please. I may not be able to help with that one, as I don't use Xcode.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-17 21:57 Keith David Bershatsky
  2022-04-17 23:21 ` Paul Eggert
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-17 21:57 UTC (permalink / raw)
  To: Paul Eggert; +Cc: Alan Third, Mattias Engdegård, emacs-devel

Using the master branch as of the most recent commit (6cd43d62055c9ec27cacdcaff13d4a52b7efdff2), with OSX 10.6.8 (Xcode 3.2.6), ./configure --with-gnutls=ifavailable, the build process stops before it gets to nsterm.m:

  CC       sqlite.o
sqlite.c: In function 'Fsqlite_open':
sqlite.c:265: error: 'SQLITE_OPEN_MEMORY' undeclared (first use in this function)
sqlite.c:265: error: (Each undeclared identifier is reported only once
sqlite.c:265: error: for each function it appears in.)
make[1]: *** [sqlite.o] Error 1
make: *** [src] Error 2

Keith

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-17-2022 13:37:55] <17 Apr 2022 13:37:55 -0700>
> From: Paul Eggert <eggert@cs.ucla.edu>
> To: Keith David Bershatsky <esq@lawlist.com>
> Cc: emacs-devel@gnu.org, Mattias Engdegård <mattiase@acm.org>
> Subject: Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
> 
> On 4/17/22 11:45, Keith David Bershatsky wrote:
> > The next issue with the build is at nsterm.m.  Would you like me to open a separate email with a new subject title?
> 
> Yes please. I may not be able to help with that one, as I don't use Xcode.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-17 21:57 Keith David Bershatsky
@ 2022-04-17 23:21 ` Paul Eggert
  0 siblings, 0 replies; 65+ messages in thread
From: Paul Eggert @ 2022-04-17 23:21 UTC (permalink / raw)
  To: Keith David Bershatsky; +Cc: Alan Third, Mattias Engdegård, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 488 bytes --]

On 4/17/22 14:57, Keith David Bershatsky wrote:
> Using the master branch as of the most recent commit (6cd43d62055c9ec27cacdcaff13d4a52b7efdff2), with OSX 10.6.8 (Xcode 3.2.6), ./configure --with-gnutls=ifavailable, the build process stops before it gets to nsterm.m:
> 
>    CC       sqlite.o
> sqlite.c: In function 'Fsqlite_open':
> sqlite.c:265: error: 'SQLITE_OPEN_MEMORY' undeclared (first use in this function)

Does the attached fix that for you? (This also fixes a memory leak.)

[-- Attachment #2: sqlite.diff --]
[-- Type: text/x-patch, Size: 2016 bytes --]

diff --git a/src/sqlite.c b/src/sqlite.c
index 1ca8669931..7388b576e9 100644
--- a/src/sqlite.c
+++ b/src/sqlite.c
@@ -240,38 +240,36 @@ DEFUN ("sqlite-open", Fsqlite_open, Ssqlite_open, 0, 1, 0,
 If FILE is nil, an in-memory database will be opened instead.  */)
   (Lisp_Object file)
 {
-  char *name;
+  Lisp_Object name;
+  int flags = (SQLITE_OPEN_CREATE | SQLITE_OPEN_FULLMUTEX
+	       | SQLITE_OPEN_READWRITE);
+#ifdef SQLITE_OPEN_URI
+  flags |= SQLITE_OPEN_URI;
+#endif
+
   if (!init_sqlite_functions ())
     xsignal1 (Qerror, build_string ("sqlite support is not available"));
 
   if (!NILP (file))
+    name = ENCODE_FILE (Fexpand_file_name (file, Qnil));
+  else
     {
-      CHECK_STRING (file);
-      file = ENCODE_FILE (Fexpand_file_name (file, Qnil));
-      name = xstrdup (SSDATA (file));
+#ifdef SQLITE_OPEN_MEMORY
+      /* In-memory database.  These have to have different names to
+	 refer to different databases.  */
+      AUTO_STRING (memory_fmt, ":memory:%d");
+      name = CALLN (Fformat, memory_fmt, make_int (++db_count));
+      flags |= SQLITE_OPEN_MEMORY;
+#else
+      xsignal1 (Qerror, build_string ("sqlite in-memory is not available"));
+#endif
     }
-  else
-    /* In-memory database.  These have to have different names to
-       refer to different databases.  */
-    name = xstrdup (SSDATA (CALLN (Fformat, build_string (":memory:%d"),
-				   make_int (++db_count))));
 
   sqlite3 *sdb;
-  int ret = sqlite3_open_v2 (name,
-			     &sdb,
-			     SQLITE_OPEN_FULLMUTEX
-			     | SQLITE_OPEN_READWRITE
-			     | SQLITE_OPEN_CREATE
-			     | (NILP (file) ? SQLITE_OPEN_MEMORY : 0)
-#ifdef SQLITE_OPEN_URI
-			     | SQLITE_OPEN_URI
-#endif
-			     | 0, NULL);
-
-  if (ret != SQLITE_OK)
+  if (sqlite3_open_v2 (SSDATA (name), &sdb, flags, NULL) != SQLITE_OK)
     return Qnil;
 
-  return make_sqlite (false, sdb, NULL, name);
+  return make_sqlite (false, sdb, NULL, xstrdup (SSDATA (name)));
 }
 
 DEFUN ("sqlite-close", Fsqlite_close, Ssqlite_close, 1, 1, 0,

^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-18  0:38 Keith David Bershatsky
  2022-04-18  0:58 ` Paul Eggert
  2022-04-18  1:39 ` Po Lu
  0 siblings, 2 replies; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-18  0:38 UTC (permalink / raw)
  To: Paul Eggert; +Cc: Alan Third, Mattias Engdegård, emacs-devel

Yes, sqlite.diff permitted the build on the master branch to advance forward to nsterm.m, where it stopped:

  CC       nsterm.o
In file included from nsterm.m:46:
lisp.h:2156: warning: declaration does not declare anything
nsterm.m: In function 'ns_parent_window_rect':
nsterm.m:754: warning: 'NSWindow' may not respond to '-convertRectToScreen:'
nsterm.m:754: warning: (Messages without a matching method signature
nsterm.m:754: warning: will be assumed to return 'id' and accept
nsterm.m:754: warning: '...' as arguments.)
nsterm.m:754: error: incompatible types in assignment
nsterm.m: In function 'ns_frame_scale_factor':
nsterm.m:792: warning: 'NSWindow' may not respond to '-backingScaleFactor'
nsterm.m:792: error: incompatible types in return
nsterm.m: In function '-[EmacsView magnifyWithEvent:]':
nsterm.m:6887: warning: 'NSEvent' may not respond to '-phase'
nsterm.m:6887: error: 'NSEventPhaseBegan' undeclared (first use in this function)
nsterm.m:6887: error: (Each undeclared identifier is reported only once
nsterm.m:6887: error: for each function it appears in.)
nsterm.m: In function '-[EmacsWindow initWithEmacsFrame:fullscreen:screen:]':
nsterm.m:8386: warning: 'EmacsWindow' may not respond to '-setTabbingMode:'
nsterm.m: In function '-[EmacsWindow setParentChildRelationships]':
nsterm.m:8455: error: 'child' undeclared (first use in this function)
nsterm.m:8459: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
nsterm.m:8461: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
nsterm.m:8491: error: expected ')' before '{' token
nsterm.m:8504: error: expected expression before '}' token
nsterm.m:8515: error: expected ')' before 'if'
nsterm.m:8521: error: expected expression before '}' token
make[1]: *** [nsterm.o] Error 1
make: *** [src] Error 2
~/Desktop/emacs $ 

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-17-2022 16:21:40] <17 Apr 2022 16:21:40 -0700>
> From: Paul Eggert <eggert@cs.ucla.edu>
> To: Keith David Bershatsky <esq@lawlist.com>
> Cc: emacs-devel@gnu.org, Alan Third <athird@googlemail.com>, Mattias Engdegård <mattiase@acm.org>
> Subject: Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
> 
> On 4/17/22 14:57, Keith David Bershatsky wrote:
> > Using the master branch as of the most recent commit (6cd43d62055c9ec27cacdcaff13d4a52b7efdff2), with OSX 10.6.8 (Xcode 3.2.6), ./configure --with-gnutls=ifavailable, the build process stops before it gets to nsterm.m:
> >
> >    CC       sqlite.o
> > sqlite.c: In function 'Fsqlite_open':
> > sqlite.c:265: error: 'SQLITE_OPEN_MEMORY' undeclared (first use in this function)
> 
> Does the attached fix that for you? (This also fixes a memory leak.)



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-18  0:38 Keith David Bershatsky
@ 2022-04-18  0:58 ` Paul Eggert
  2022-04-18  1:39 ` Po Lu
  1 sibling, 0 replies; 65+ messages in thread
From: Paul Eggert @ 2022-04-18  0:58 UTC (permalink / raw)
  To: Keith David Bershatsky; +Cc: Alan Third, Mattias Engdegård, emacs-devel

On 4/17/22 17:38, Keith David Bershatsky wrote:
> Yes, sqlite.diff permitted the build on the master branch to advance forward to nsterm.m, where it stopped:

Thanks for checking. I installed sqlite.diff on master.

Unfortunately I can't help with the nsterm.m issue since that's 
Apple-specific and I don't use macOS, so you may have to dig a bit more 
yourself on that one.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-18  0:38 Keith David Bershatsky
  2022-04-18  0:58 ` Paul Eggert
@ 2022-04-18  1:39 ` Po Lu
  1 sibling, 0 replies; 65+ messages in thread
From: Po Lu @ 2022-04-18  1:39 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Paul Eggert, Alan Third, Mattias Engdegård, emacs-devel

Keith David Bershatsky <esq@lawlist.com> writes:

> Yes, sqlite.diff permitted the build on the master branch to advance forward to nsterm.m, where it stopped:
>
>   CC       nsterm.o
> In file included from nsterm.m:46:
> lisp.h:2156: warning: declaration does not declare anything
> nsterm.m: In function 'ns_parent_window_rect':
> nsterm.m:754: warning: 'NSWindow' may not respond to '-convertRectToScreen:'
> nsterm.m:754: warning: (Messages without a matching method signature
> nsterm.m:754: warning: will be assumed to return 'id' and accept
> nsterm.m:754: warning: '...' as arguments.)
> nsterm.m:754: error: incompatible types in assignment
> nsterm.m: In function 'ns_frame_scale_factor':
> nsterm.m:792: warning: 'NSWindow' may not respond to '-backingScaleFactor'
> nsterm.m:792: error: incompatible types in return
> nsterm.m: In function '-[EmacsView magnifyWithEvent:]':
> nsterm.m:6887: warning: 'NSEvent' may not respond to '-phase'
> nsterm.m:6887: error: 'NSEventPhaseBegan' undeclared (first use in this function)
> nsterm.m:6887: error: (Each undeclared identifier is reported only once
> nsterm.m:6887: error: for each function it appears in.)
> nsterm.m: In function '-[EmacsWindow initWithEmacsFrame:fullscreen:screen:]':
> nsterm.m:8386: warning: 'EmacsWindow' may not respond to '-setTabbingMode:'
> nsterm.m: In function '-[EmacsWindow setParentChildRelationships]':
> nsterm.m:8455: error: 'child' undeclared (first use in this function)
> nsterm.m:8459: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
> nsterm.m:8461: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
> nsterm.m:8491: error: expected ')' before '{' token
> nsterm.m:8504: error: expected expression before '}' token
> nsterm.m:8515: error: expected ')' before 'if'
> nsterm.m:8521: error: expected expression before '}' token
> make[1]: *** [nsterm.o] Error 1
> make: *** [src] Error 2
> ~/Desktop/emacs $ 

Please try the following patch, and test it on a newer Mac OS X as
well.  I only know it builds on GNUstep.

diff --git a/src/nsterm.m b/src/nsterm.m
index 550f29212e..e34c7cd45f 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -751,7 +751,19 @@ Free a pool and temporary objects it refers to (callable from C)
       EmacsView *parentView = FRAME_NS_VIEW (FRAME_PARENT_FRAME (f));
       parentRect = [parentView convertRect:[parentView frame]
                                     toView:nil];
-      parentRect = [[parentView window] convertRectToScreen:parentRect];
+#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1070
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+      if ([[parentView window] respondsToSelector: @selector(convertRectToScreen:)])
+#endif
+	parentRect = [[parentView window] convertRectToScreen: parentRect];
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+      else
+#endif
+#endif /* MAC_OS_X_VERSION_MAX_ALLOWED >= 1070 */
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070	\
+  || defined (NS_IMPL_GNUSTEP)
+	parentRect.origin = [[parentView window] convertBaseToScreen: parentRect.origin];
+#endif
     }
   else
     parentRect = [[[NSScreen screens] objectAtIndex:0] frame];
@@ -789,7 +801,14 @@ Free a pool and temporary objects it refers to (callable from C)
 ns_frame_scale_factor (struct frame *f)
 {
 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED > 1060
-  return [[FRAME_NS_VIEW (f) window] backingScaleFactor];
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+  if ([[FRAME_NS_VIEW (f) window] respondsToSelector: @selector(convertRectToScreen:)])
+#endif
+    return [[FRAME_NS_VIEW (f) window] backingScaleFactor];
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+  else
+    return [[FRAME_NS_VIEW (f) window] userSpaceScaleFactor];
+#endif
 #else
   return [[FRAME_NS_VIEW (f) window] userSpaceScaleFactor];
 #endif
@@ -6869,7 +6888,7 @@ - (void)otherMouseDragged: (NSEvent *)e
   [self mouseMoved: e];
 }
 
-#ifdef NS_IMPL_COCOA
+#if defined NS_IMPL_COCOA && MAC_OS_X_VERSION_MIN_REQUIRED >= 1070
 - (void) magnifyWithEvent: (NSEvent *) event
 {
   NSPoint pt = [self convertPoint: [event locationInWindow] fromView: nil];
@@ -8452,7 +8471,7 @@ - (void)setParentChildRelationships
      expected later.  */
 
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 101000
-  if ([child respondsToSelector:@selector(setAccessibilitySubrole:)])
+  if ([self respondsToSelector:@selector(setAccessibilitySubrole:)])
 #endif
     /* Set the accessibility subroles.  */
     if (parentFrame)
@@ -8484,7 +8503,7 @@ - (void)setParentChildRelationships
 
 #ifdef NS_IMPL_COCOA
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
-      if ([ourView respondsToSelector:@selector (toggleFullScreen)]
+      if ([ourView respondsToSelector:@selector (toggleFullScreen)])
 #endif
           /* If we are the descendent of a fullscreen window and we
              have no new parent, go fullscreen.  */
@@ -8509,11 +8528,11 @@ - (void)setParentChildRelationships
 
 #ifdef NS_IMPL_COCOA
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
-      if ([ourView respondsToSelector:@selector (toggleFullScreen)]
+      if ([ourView respondsToSelector:@selector (toggleFullScreen)])
 #endif
-          /* Child frames must not be fullscreen.  */
-          if ([ourView fsIsNative] && [ourView isFullscreen])
-            [ourView toggleFullScreen:self];
+	/* Child frames must not be fullscreen.  */
+	if ([ourView fsIsNative] && [ourView isFullscreen])
+	  [ourView toggleFullScreen:self];
 #endif
 
       [parentWindow addChildWindow:self




^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-18  2:24 Keith David Bershatsky
  2022-04-18  2:53 ` Po Lu
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-18  2:24 UTC (permalink / raw)
  To: Po Lu; +Cc: Alan Third, Mattias Engdegård, Paul Eggert, emacs-devel

I applied the patch from Po Lu to the master branch and have the following output when building on OSX 10.6.8:

  CC       nsterm.o
In file included from nsterm.m:46:
lisp.h:2156: warning: declaration does not declare anything
nsterm.m: In function 'ns_frame_scale_factor':
nsterm.m:807: warning: 'NSWindow' may not respond to '-backingScaleFactor'
nsterm.m:807: warning: (Messages without a matching method signature
nsterm.m:807: warning: will be assumed to return 'id' and accept
nsterm.m:807: warning: '...' as arguments.)
nsterm.m:807: error: incompatible types in return
nsterm.m: In function '-[EmacsWindow initWithEmacsFrame:fullscreen:screen:]':
nsterm.m:8405: warning: 'EmacsWindow' may not respond to '-setTabbingMode:'
nsterm.m: In function '-[EmacsWindow setParentChildRelationships]':
nsterm.m:8478: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
nsterm.m:8480: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
make[1]: *** [nsterm.o] Error 1
make: *** [src] Error 2
~/Desktop/emacs $ 

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-17-2022 18:39:41] <18 Apr 2022 09:39:41 +0800>
> From: Po Lu <luangruo@yahoo.com>
> * * *



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-18  2:24 Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat' Keith David Bershatsky
@ 2022-04-18  2:53 ` Po Lu
  0 siblings, 0 replies; 65+ messages in thread
From: Po Lu @ 2022-04-18  2:53 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: emacs-devel, Alan Third, Mattias Engdegård, Paul Eggert

Keith David Bershatsky <esq@lawlist.com> writes:

> I applied the patch from Po Lu to the master branch and have the following output when building on OSX 10.6.8:
>
>   CC       nsterm.o
> In file included from nsterm.m:46:
> lisp.h:2156: warning: declaration does not declare anything
> nsterm.m: In function 'ns_frame_scale_factor':
> nsterm.m:807: warning: 'NSWindow' may not respond to '-backingScaleFactor'
> nsterm.m:807: warning: (Messages without a matching method signature
> nsterm.m:807: warning: will be assumed to return 'id' and accept
> nsterm.m:807: warning: '...' as arguments.)
> nsterm.m:807: error: incompatible types in return
> nsterm.m: In function '-[EmacsWindow initWithEmacsFrame:fullscreen:screen:]':
> nsterm.m:8405: warning: 'EmacsWindow' may not respond to '-setTabbingMode:'
> nsterm.m: In function '-[EmacsWindow setParentChildRelationships]':
> nsterm.m:8478: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
> nsterm.m:8480: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
> make[1]: *** [nsterm.o] Error 1
> make: *** [src] Error 2
> ~/Desktop/emacs $ 
>
> ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
>
>> Date: [04-17-2022 18:39:41] <18 Apr 2022 09:39:41 +0800>
>> From: Po Lu <luangruo@yahoo.com>
>> * * *

This should fix the setTabbingMode warning, but what's the value of
MAC_OS_X_VERSION_MAX_ALLOWED on your system?  I guess it should be
`1060', not higher, not lower.

diff --git a/src/nsterm.m b/src/nsterm.m
index 550f29212e..fd6e67a8cb 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -751,7 +751,19 @@ Free a pool and temporary objects it refers to (callable from C)
       EmacsView *parentView = FRAME_NS_VIEW (FRAME_PARENT_FRAME (f));
       parentRect = [parentView convertRect:[parentView frame]
                                     toView:nil];
-      parentRect = [[parentView window] convertRectToScreen:parentRect];
+#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1070
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+      if ([[parentView window] respondsToSelector: @selector(convertRectToScreen:)])
+#endif
+	parentRect = [[parentView window] convertRectToScreen: parentRect];
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+      else
+#endif
+#endif /* MAC_OS_X_VERSION_MAX_ALLOWED >= 1070 */
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070	\
+  || defined (NS_IMPL_GNUSTEP)
+	parentRect.origin = [[parentView window] convertBaseToScreen: parentRect.origin];
+#endif
     }
   else
     parentRect = [[[NSScreen screens] objectAtIndex:0] frame];
@@ -789,7 +801,14 @@ Free a pool and temporary objects it refers to (callable from C)
 ns_frame_scale_factor (struct frame *f)
 {
 #if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED > 1060
-  return [[FRAME_NS_VIEW (f) window] backingScaleFactor];
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+  if ([[FRAME_NS_VIEW (f) window] respondsToSelector: @selector(convertRectToScreen:)])
+#endif
+    return [[FRAME_NS_VIEW (f) window] backingScaleFactor];
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+  else
+    return [[FRAME_NS_VIEW (f) window] userSpaceScaleFactor];
+#endif
 #else
   return [[FRAME_NS_VIEW (f) window] userSpaceScaleFactor];
 #endif
@@ -6869,7 +6888,7 @@ - (void)otherMouseDragged: (NSEvent *)e
   [self mouseMoved: e];
 }
 
-#ifdef NS_IMPL_COCOA
+#if defined NS_IMPL_COCOA && MAC_OS_X_VERSION_MAX_ALLOWED >= 1070
 - (void) magnifyWithEvent: (NSEvent *) event
 {
   NSPoint pt = [self convertPoint: [event locationInWindow] fromView: nil];
@@ -6886,11 +6905,18 @@ - (void) magnifyWithEvent: (NSEvent *) event
 
       if ([event phase] == NSEventPhaseBegan)
 	{
-	  last_scale = 1.0 + [event magnification];
-	  emacs_event->arg = list4 (make_float (0.0),
-				    make_float (0.0),
-				    make_float (last_scale),
-				    make_float (0.0));
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+	  if ([event respondsToSelector: @selector(magnification)])
+	    {
+#endif
+	      last_scale = 1.0 + [event magnification];
+	      emacs_event->arg = list4 (make_float (0.0),
+					make_float (0.0),
+					make_float (last_scale),
+					make_float (0.0));
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+	    }
+#endif
 	}
       else
 	/* Report a tiny change so that Lisp code doesn't think this
@@ -8381,7 +8407,7 @@ - (instancetype) initWithEmacsFrame:(struct frame *)f
       /* macOS Sierra automatically enables tabbed windows.  We can't
          allow this to be enabled until it's available on a Free system.
          Currently it only happens by accident and is buggy anyway.  */
-#ifdef NS_IMPL_COCOA
+#if defined NS_IMPL_COCOA && MAC_OS_X_VERSION_MAX_ALLOWED >= 101200
       if ([self respondsToSelector:@selector(setTabbingMode:)])
         [self setTabbingMode:NSWindowTabbingModeDisallowed];
 #endif
@@ -8451,14 +8477,16 @@ - (void)setParentChildRelationships
      behaviors early otherwise child windows may not go fullscreen as
      expected later.  */
 
+#if MAC_OS_X_VERSION_MAX_ALLOWED >= 101000
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 101000
-  if ([child respondsToSelector:@selector(setAccessibilitySubrole:)])
+  if ([self respondsToSelector:@selector(setAccessibilitySubrole:)])
 #endif
     /* Set the accessibility subroles.  */
     if (parentFrame)
       [self setAccessibilitySubrole:NSAccessibilityFloatingWindowSubrole];
     else
       [self setAccessibilitySubrole:NSAccessibilityStandardWindowSubrole];
+#endif
 
 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1070
   [ourView updateCollectionBehavior];
@@ -8484,7 +8512,7 @@ - (void)setParentChildRelationships
 
 #ifdef NS_IMPL_COCOA
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
-      if ([ourView respondsToSelector:@selector (toggleFullScreen)]
+      if ([ourView respondsToSelector:@selector (toggleFullScreen)])
 #endif
           /* If we are the descendent of a fullscreen window and we
              have no new parent, go fullscreen.  */
@@ -8509,11 +8537,11 @@ - (void)setParentChildRelationships
 
 #ifdef NS_IMPL_COCOA
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
-      if ([ourView respondsToSelector:@selector (toggleFullScreen)]
+      if ([ourView respondsToSelector:@selector (toggleFullScreen)])
 #endif
-          /* Child frames must not be fullscreen.  */
-          if ([ourView fsIsNative] && [ourView isFullscreen])
-            [ourView toggleFullScreen:self];
+	/* Child frames must not be fullscreen.  */
+	if ([ourView fsIsNative] && [ourView isFullscreen])
+	  [ourView toggleFullScreen:self];
 #endif
 
       [parentWindow addChildWindow:self



^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-17 20:36       ` Paul Eggert
@ 2022-04-18  4:49         ` Eli Zaretskii
  0 siblings, 0 replies; 65+ messages in thread
From: Eli Zaretskii @ 2022-04-18  4:49 UTC (permalink / raw)
  To: Paul Eggert; +Cc: mattiase, esq, emacs-devel

> Date: Sun, 17 Apr 2022 13:36:58 -0700
> Cc: mattiase@acm.org, esq@lawlist.com, emacs-devel@gnu.org
> From: Paul Eggert <eggert@cs.ucla.edu>
> 
> On 4/17/22 12:12, Eli Zaretskii wrote:
> 
> > We
> > use 'open' and 'openat' in many places, and this change affects all of
> > them.
> 
> I don't see why. The patch affects none of the existing 'open' calls, 
> and just three of the 'openat' calls.

'openat' is implemented in src/w32.c for w32, and it calls 'sys_open',
which supports UTF-8 encoded file names on MS-Windows.  Your patch
replaced that with a call to 'open', which was basically not called
anywhere in Emacs before that, only internally in w32.c, via
'sys_open'.  And 'sys_open' is an important part of the Emacs ability
to support UTF-8 encoded file names on MS-Windows.  I hope it is now
more clear why such a change on a very stable branch cannot be
tolerated, unless the problem it solves is a critical one (which it
isn't).

I'm sorry, but users of old macOS versions will have to be more active
during the pretest to have their systems supported well by released
Emacs versions.  They can also install the patch locally if it solves
their problems.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-18 19:51 Keith David Bershatsky
  2022-04-18 19:54 ` Paul Eggert
  2022-04-19  1:00 ` Po Lu
  0 siblings, 2 replies; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-18 19:51 UTC (permalink / raw)
  To: Po Lu; +Cc: Alan Third, Mattias Engdegård, Paul Eggert, emacs-devel

If the value of MAC_OS_X_VERSION_MAX_ALLOWED is the same for earlier versions of Emacs running on the same operating system, then the value is 1068.

I was not able to apply the patch.  I tried the same approach as previously; i.e., by saving your entire email as a file, and then removing everything before "diff --git a/src/nsterm.m b/src/nsterm.m" and adding a final new line to the end of the file.

~/Desktop/emacs $ git apply /Users/HOME/Desktop/nsterm_002.diff
error: patch failed: src/nsterm.m:6886
error: src/nsterm.m: patch does not apply

Keith

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> >> Date: [04-17-2022 18:39:41] <18 Apr 2022 09:39:41 +0800>
> >> From: Po Lu <luangruo@yahoo.com>
> >> * * *
> 
> This should fix the setTabbingMode warning, but what's the value of
> MAC_OS_X_VERSION_MAX_ALLOWED on your system?  I guess it should be
> `1060', not higher, not lower.
> 
> * * *



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-18 19:51 Keith David Bershatsky
@ 2022-04-18 19:54 ` Paul Eggert
  2022-04-19  1:00 ` Po Lu
  1 sibling, 0 replies; 65+ messages in thread
From: Paul Eggert @ 2022-04-18 19:54 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Alan Third, Mattias Engdegård, Po Lu, emacs-devel

On 4/18/22 12:51, Keith David Bershatsky wrote:
> ~/Desktop/emacs $ git apply /Users/HOME/Desktop/nsterm_002.diff
> error: patch failed: src/nsterm.m:6886

You can try this instead:

patch -p1 </Users/HOME/Desktop/nsterm_002.diff

as GNU patch is sometimes more forgiving. If that doesn't work, there's 
always by-hand patching....



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-18 20:43 Keith David Bershatsky
  0 siblings, 0 replies; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-18 20:43 UTC (permalink / raw)
  To: Po Lu; +Cc: Alan Third, Mattias Engdegård, Paul Eggert, emacs-devel

I applied the latest patch, partially by hand, and partially by using Paul's suggestion:  patch -p1 </Users/HOME/Desktop/nsterm_002.diff

Here is the build output:

  CC       nsterm.o
In file included from nsterm.m:46:
lisp.h:2156: warning: declaration does not declare anything
nsterm.m: In function 'ns_frame_scale_factor':
nsterm.m:807: warning: 'NSWindow' may not respond to '-backingScaleFactor'
nsterm.m:807: warning: (Messages without a matching method signature
nsterm.m:807: warning: will be assumed to return 'id' and accept
nsterm.m:807: warning: '...' as arguments.)
nsterm.m:807: error: incompatible types in return
make[1]: *** [nsterm.o] Error 1
make: *** [src] Error 2
~/Desktop/emacs $



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-18 19:51 Keith David Bershatsky
  2022-04-18 19:54 ` Paul Eggert
@ 2022-04-19  1:00 ` Po Lu
  1 sibling, 0 replies; 65+ messages in thread
From: Po Lu @ 2022-04-19  1:00 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: emacs-devel, Alan Third, Mattias Engdegård, Paul Eggert

Keith David Bershatsky <esq@lawlist.com> writes:

> If the value of MAC_OS_X_VERSION_MAX_ALLOWED is the same for earlier
> versions of Emacs running on the same operating system, then the value
> is 1068.

Thanks.  What if after applying the patch you replace every instance of
`1060' with `1068'?

> I was not able to apply the patch.  I tried the same approach as
> previously; i.e., by saving your entire email as a file, and then
> removing everything before "diff --git a/src/nsterm.m b/src/nsterm.m"
> and adding a final new line to the end of the file.
>
> ~/Desktop/emacs $ git apply /Users/HOME/Desktop/nsterm_002.diff
> error: patch failed: src/nsterm.m:6886
> error: src/nsterm.m: patch does not apply

It shouldn't be applied on top of the previous patch.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-19  1:24 Keith David Bershatsky
  2022-04-19  2:35 ` Po Lu
  2022-04-19  2:56 ` Paul Eggert
  0 siblings, 2 replies; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-19  1:24 UTC (permalink / raw)
  To: Po Lu; +Cc: Alan Third, Mattias Engdegård, Paul Eggert, emacs-devel

I located just one instance of 1060 and changed it to 1068 per your suggestion.  The build generated one warning during the nsterm.m section, and then moved on to nsfns.m, where the build stopped.

  CC       nsterm.o
In file included from nsterm.m:46:
lisp.h:2156: warning: declaration does not declare anything
  CC       nsfns.o
In file included from nsfns.m:36:
lisp.h:2156: warning: declaration does not declare anything
nsfns.m:1099: warning: braces around scalar initializer
nsfns.m:1099: warning: (near initialization for 'Sx_create_frame.s.command_modes')
nsfns.m:1528: warning: braces around scalar initializer
nsfns.m:1528: warning: (near initialization for 'Sns_frame_list_z_order.s.command_modes')
nsfns.m:1559: warning: braces around scalar initializer
nsfns.m:1559: warning: (near initialization for 'Sns_frame_restack.s.command_modes')
nsfns.m:1590: warning: braces around scalar initializer
nsfns.m:1590: warning: (near initialization for 'Sns_popup_font_panel.s.command_modes')
nsfns.m:1590: warning: initialization from incompatible pointer type
nsfns.m:1611: warning: braces around scalar initializer
nsfns.m:1611: warning: (near initialization for 'Sns_popup_color_panel.s.command_modes')
nsfns.m:1611: warning: initialization from incompatible pointer type
nsfns.m:1664: warning: braces around scalar initializer
nsfns.m:1664: warning: (near initialization for 'Sns_read_file_name.s.command_modes')
nsfns.m:1782: warning: braces around scalar initializer
nsfns.m:1782: warning: (near initialization for 'Sns_get_resource.s.command_modes')
nsfns.m:1802: warning: braces around scalar initializer
nsfns.m:1802: warning: (near initialization for 'Sns_set_resource.s.command_modes')
nsfns.m:1829: warning: braces around scalar initializer
nsfns.m:1829: warning: (near initialization for 'Sx_server_max_request_size.s.command_modes')
nsfns.m:1842: warning: braces around scalar initializer
nsfns.m:1842: warning: (near initialization for 'Sx_server_vendor.s.command_modes')
nsfns.m:1855: warning: braces around scalar initializer
nsfns.m:1855: warning: (near initialization for 'Sx_server_version.s.command_modes')
nsfns.m:1870: warning: braces around scalar initializer
nsfns.m:1870: warning: (near initialization for 'Sx_display_screens.s.command_modes')
nsfns.m:1879: warning: braces around scalar initializer
nsfns.m:1879: warning: (near initialization for 'Sx_display_mm_height.s.command_modes')
nsfns.m:1889: warning: braces around scalar initializer
nsfns.m:1889: warning: (near initialization for 'Sx_display_mm_width.s.command_modes')
nsfns.m:1899: warning: braces around scalar initializer
nsfns.m:1899: warning: (near initialization for 'Sx_display_backing_store.s.command_modes')
nsfns.m:1923: warning: braces around scalar initializer
nsfns.m:1923: warning: (near initialization for 'Sx_display_visual_class.s.command_modes')
nsfns.m:1950: warning: braces around scalar initializer
nsfns.m:1950: warning: (near initialization for 'Sx_display_save_under.s.command_modes')
nsfns.m:1974: warning: braces around scalar initializer
nsfns.m:1974: warning: (near initialization for 'Sx_open_connection.s.command_modes')
nsfns.m:1999: warning: braces around scalar initializer
nsfns.m:1999: warning: (near initialization for 'Sx_close_connection.s.command_modes')
nsfns.m:2010: warning: braces around scalar initializer
nsfns.m:2010: warning: (near initialization for 'Sx_display_list.s.command_modes')
nsfns.m:2024: warning: braces around scalar initializer
nsfns.m:2024: warning: (near initialization for 'Sns_hide_others.s.command_modes')
nsfns.m:2034: warning: braces around scalar initializer
nsfns.m:2034: warning: (near initialization for 'Sns_hide_emacs.s.command_modes')
nsfns.m:2067: warning: braces around scalar initializer
nsfns.m:2067: warning: (near initialization for 'Sns_emacs_info_panel.s.command_modes')
nsfns.m:2078: warning: braces around scalar initializer
nsfns.m:2078: warning: (near initialization for 'Sns_font_name.s.command_modes')
nsfns.m:2098: warning: braces around scalar initializer
nsfns.m:2098: warning: (near initialization for 'Sns_list_colors.s.command_modes')
nsfns.m:2138: warning: braces around scalar initializer
nsfns.m:2138: warning: (near initialization for 'Sns_list_services.s.command_modes')
nsfns.m:2163: warning: braces around scalar initializer
nsfns.m:2163: warning: (near initialization for 'Sns_perform_service.s.command_modes')
nsfns.m:2261: warning: braces around scalar initializer
nsfns.m:2261: warning: (near initialization for 'Sns_do_applescript.s.command_modes')
nsfns.m:2419: warning: braces around scalar initializer
nsfns.m:2419: warning: (near initialization for 'Sxw_color_defined_p.s.command_modes')
nsfns.m:2429: warning: braces around scalar initializer
nsfns.m:2429: warning: (near initialization for 'Sxw_color_values.s.command_modes')
nsfns.m:2454: warning: braces around scalar initializer
nsfns.m:2454: warning: (near initialization for 'Sxw_display_color_p.s.command_modes')
nsfns.m:2471: warning: braces around scalar initializer
nsfns.m:2471: warning: (near initialization for 'Sx_display_grayscale_p.s.command_modes')
nsfns.m:2485: warning: braces around scalar initializer
nsfns.m:2485: warning: (near initialization for 'Sx_display_pixel_width.s.command_modes')
nsfns.m:2496: warning: braces around scalar initializer
nsfns.m:2496: warning: (near initialization for 'Sx_display_pixel_height.s.command_modes')
nsfns.m:2637: warning: braces around scalar initializer
nsfns.m:2637: warning: (near initialization for 'Sns_display_monitor_attributes_list.s.command_modes')
nsfns.m:2741: warning: braces around scalar initializer
nsfns.m:2741: warning: (near initialization for 'Sx_display_planes.s.command_modes')
nsfns.m:2752: warning: braces around scalar initializer
nsfns.m:2752: warning: (near initialization for 'Sx_display_color_cells.s.command_modes')
nsfns.m:2841: warning: braces around scalar initializer
nsfns.m:2841: warning: (near initialization for 'Sx_show_tip.s.command_modes')
nsfns.m:2904: warning: braces around scalar initializer
nsfns.m:2904: warning: (near initialization for 'Sx_hide_tip.s.command_modes')
nsfns.m:2981: warning: braces around scalar initializer
nsfns.m:2981: warning: (near initialization for 'Sns_frame_geometry.s.command_modes')
nsfns.m:3025: warning: braces around scalar initializer
nsfns.m:3025: warning: (near initialization for 'Sns_frame_edges.s.command_modes')
nsfns.m:3049: warning: braces around scalar initializer
nsfns.m:3049: warning: (near initialization for 'Sns_set_mouse_absolute_pixel_position.s.command_modes')
nsfns.m:3091: warning: braces around scalar initializer
nsfns.m:3091: warning: (near initialization for 'Sns_mouse_absolute_pixel_position.s.command_modes')
nsfns.m:3110: warning: braces around scalar initializer
nsfns.m:3110: warning: (near initialization for 'Sns_show_character_palette.s.command_modes')
  CC       nsmenu.o
In file included from nsmenu.m:28:
lisp.h:2156: warning: declaration does not declare anything
nsmenu.m: In function '-[EmacsMenu fillWithWidgetValue:]':
nsmenu.m:652: error: stray '@' in program
nsmenu.m:652: error: field name not in record or union initializer
nsmenu.m:652: error: (near initialization for 'font_attribs')
nsmenu.m:652: warning: incompatible Objective-C types initializing 'struct NSFont *', expected 'struct NSDictionary *'
nsmenu.m:678: error: 'NSTextAlignmentRight' undeclared (first use in this function)
nsmenu.m:678: error: (Each undeclared identifier is reported only once
nsmenu.m:678: error: for each function it appears in.)
nsmenu.m:680: error: stray '@' in program
nsmenu.m:680: error: expected expression before '{' token
nsmenu.m:683: error: stray '@' in program
nsmenu.m:683: error: expected ':' before ']' token
nsmenu.m:683: confused by earlier errors, bailing out
make[1]: *** [nsmenu.o] Error 1
make: *** [src] Error 2
~/Desktop/emacs $ 

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-18-2022 18:00:39] <19 Apr 2022 09:00:39 +0800>
> From: Po Lu <luangruo@yahoo.com>
> To: Keith David Bershatsky <esq@lawlist.com>
> Cc: emacs-devel@gnu.org, Alan Third <athird@googlemail.com>, Mattias Engdegård <mattiase@acm.org>, Paul Eggert <eggert@cs.ucla.edu>
> Subject: Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
> 
> Keith David Bershatsky <esq@lawlist.com> writes:
> 
> > If the value of MAC_OS_X_VERSION_MAX_ALLOWED is the same for earlier
> > versions of Emacs running on the same operating system, then the value
> > is 1068.
> 
> Thanks.  What if after applying the patch you replace every instance of
> `1060' with `1068'?



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-19  1:24 Keith David Bershatsky
@ 2022-04-19  2:35 ` Po Lu
  2022-04-19  4:19   ` Alan Third
  2022-04-19  2:56 ` Paul Eggert
  1 sibling, 1 reply; 65+ messages in thread
From: Po Lu @ 2022-04-19  2:35 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: emacs-devel, Alan Third, Mattias Engdegård, Paul Eggert

Keith David Bershatsky <esq@lawlist.com> writes:

> I located just one instance of 1060 and changed it to 1068 per your
> suggestion.  The build generated one warning during the nsterm.m
> section, and then moved on to nsfns.m, where the build stopped.

I think you meant nsmenu.m.

>   CC       nsmenu.o
> In file included from nsmenu.m:28:
> lisp.h:2156: warning: declaration does not declare anything
> nsmenu.m: In function '-[EmacsMenu fillWithWidgetValue:]':
> nsmenu.m:652: error: stray '@' in program
> nsmenu.m:652: error: field name not in record or union initializer
> nsmenu.m:652: error: (near initialization for 'font_attribs')
> nsmenu.m:652: warning: incompatible Objective-C types initializing 'struct NSFont *', expected 'struct NSDictionary *'

I don't know what "@" means in Objective-C, and it seems that GCC
doesn't support such a feature.  Would someone please explain this piece
of code?

  NSDictionary *font_attribs = @{NSFontAttributeName: menuFont};

> nsmenu.m:678: error: 'NSTextAlignmentRight' undeclared (first use in this function)
> nsmenu.m:678: error: (Each undeclared identifier is reported only once
> nsmenu.m:678: error: for each function it appears in.)
> nsmenu.m:680: error: stray '@' in program
> nsmenu.m:680: error: expected expression before '{' token
> nsmenu.m:683: error: stray '@' in program
> nsmenu.m:683: error: expected ':' before ']' token
> nsmenu.m:683: confused by earlier errors, bailing out

Likewise for the @{}s in the rest of this program.  Maybe it is some
kind of dictionary declaration, but where is the documentation?

Thanks.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-19  1:24 Keith David Bershatsky
  2022-04-19  2:35 ` Po Lu
@ 2022-04-19  2:56 ` Paul Eggert
  1 sibling, 0 replies; 65+ messages in thread
From: Paul Eggert @ 2022-04-19  2:56 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Alan Third, Mattias Engdegård, Po Lu, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 924 bytes --]

On 4/18/22 18:24, Keith David Bershatsky wrote:
>    CC       nsterm.o
> In file included from nsterm.m:46:
> lisp.h:2156: warning: declaration does not declare anything
>    CC       nsfns.o
> In file included from nsfns.m:36:
> lisp.h:2156: warning: declaration does not declare anything
> nsfns.m:1099: warning: braces around scalar initializer

These come from Emacs 28's use of an anonymous union, a feature that is 
in C11 but not C99. The feature is used only in one place and it is easy 
to avoid using it, so I installed a patch to master to do that (see 
attached).

I noticed another place where Emacs used a feature not supported by C99, 
namely an enum out of int range, and installed a patch to master to fix 
that too (also attached).

Although I've been admonished to not install into emacs-28, I think you 
can use these patches there. They should work though you may need to 
move their line numbers a bit.

[-- Attachment #2: 0001-Port-module_bignum_count_max-to-strict-C.patch --]
[-- Type: text/x-patch, Size: 1104 bytes --]

From 1a06b3a444c1def76cb79c9636e255404fb72a5c Mon Sep 17 00:00:00 2001
From: Paul Eggert <eggert@cs.ucla.edu>
Date: Tue, 19 Apr 2022 04:29:49 +0200
Subject: [PATCH 1/2] Port module_bignum_count_max to strict C

* src/emacs-module.c (module_bignum_count_max): Make
this a macro, not an enum, since it might not fit into
int as C99 requires.
---
 src/emacs-module.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/src/emacs-module.c b/src/emacs-module.c
index 0974a199e5..0d3cce0276 100644
--- a/src/emacs-module.c
+++ b/src/emacs-module.c
@@ -955,11 +955,9 @@ Approach (1) has the advantage of being faster (no import/export
 import/export overhead on most platforms.
 */
 
-enum
-{
-  /* Documented maximum count of magnitude elements. */
-  module_bignum_count_max = min (SIZE_MAX, PTRDIFF_MAX) / sizeof (emacs_limb_t)
-};
+/* Documented maximum count of magnitude elements. */
+#define module_bignum_count_max \
+  ((ptrdiff_t) min (SIZE_MAX, PTRDIFF_MAX) / sizeof (emacs_limb_t))
 
 /* Verify that emacs_limb_t indeed has unique object
    representations.  */
-- 
2.35.1


[-- Attachment #3: 0002-Port-struct-Lisp_Subr-to-C99.patch --]
[-- Type: text/x-patch, Size: 4303 bytes --]

From 036fbf735500aaa595bc806963cdf305c99a2113 Mon Sep 17 00:00:00 2001
From: Paul Eggert <eggert@cs.ucla.edu>
Date: Mon, 18 Apr 2022 19:44:03 -0700
Subject: [PATCH 2/2] Port struct Lisp_Subr to C99
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

* src/lisp.h (struct Lisp_Subr): Don’t use an anonymous union,
a feature missing from C99 and not supported by older OS X.
All uses changed.
---
 src/alloc.c   | 2 +-
 src/comp.c    | 2 +-
 src/data.c    | 6 +++---
 src/eval.c    | 2 +-
 src/lisp.h    | 6 +++---
 src/pdumper.c | 4 ++--
 6 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/alloc.c b/src/alloc.c
index 8fd981a51f..4fc4044587 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -6894,7 +6894,7 @@ #define CHECK_ALLOCATED_AND_LIVE_SYMBOL()		((void) 0)
 		  {
 		    set_vector_marked (ptr);
 		    struct Lisp_Subr *subr = XSUBR (obj);
-		    mark_stack_push_value (subr->native_intspec);
+		    mark_stack_push_value (subr->intspec.native);
 		    mark_stack_push_value (subr->command_modes);
 		    mark_stack_push_value (subr->native_comp_u);
 		    mark_stack_push_value (subr->lambda_list);
diff --git a/src/comp.c b/src/comp.c
index 398f35ddb0..66a7ab789a 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -5439,7 +5439,7 @@ make_subr (Lisp_Object symbol_name, Lisp_Object minarg, Lisp_Object maxarg,
   x->s.min_args = XFIXNUM (minarg);
   x->s.max_args = FIXNUMP (maxarg) ? XFIXNUM (maxarg) : MANY;
   x->s.symbol_name = xstrdup (SSDATA (symbol_name));
-  x->s.native_intspec = intspec;
+  x->s.intspec.native = intspec;
   x->s.command_modes = command_modes;
   x->s.doc = XFIXNUM (doc_idx);
 #ifdef HAVE_NATIVE_COMP
diff --git a/src/data.c b/src/data.c
index f06b561dcc..72af8a6648 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1090,10 +1090,10 @@ DEFUN ("interactive-form", Finteractive_form, Sinteractive_form, 1, 1, 0,
 
   if (SUBRP (fun))
     {
-      if (SUBR_NATIVE_COMPILEDP (fun) && !NILP (XSUBR (fun)->native_intspec))
-	return XSUBR (fun)->native_intspec;
+      if (SUBR_NATIVE_COMPILEDP (fun) && !NILP (XSUBR (fun)->intspec.native))
+	return XSUBR (fun)->intspec.native;
 
-      const char *spec = XSUBR (fun)->intspec;
+      const char *spec = XSUBR (fun)->intspec.string;
       if (spec)
 	return list2 (Qinteractive,
 		      (*spec != '(') ? build_string (spec) :
diff --git a/src/eval.c b/src/eval.c
index 6b1e12b823..37bc03465c 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -2055,7 +2055,7 @@ DEFUN ("commandp", Fcommandp, Scommandp, 1, 2, 0,
   /* Emacs primitives are interactive if their DEFUN specifies an
      interactive spec.  */
   if (SUBRP (fun))
-    return XSUBR (fun)->intspec ? Qt : if_prop;
+    return XSUBR (fun)->intspec.string ? Qt : if_prop;
 
   /* Bytecode objects are interactive if they are long enough to
      have an element whose index is COMPILED_INTERACTIVE, which is
diff --git a/src/lisp.h b/src/lisp.h
index f723876634..fb43bfa791 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -2151,9 +2151,9 @@ CHAR_TABLE_SET (Lisp_Object ct, int idx, Lisp_Object val)
     short min_args, max_args;
     const char *symbol_name;
     union {
-      const char *intspec;
-      Lisp_Object native_intspec;
-    };
+      const char *string;
+      Lisp_Object native;
+    } intspec;
     Lisp_Object command_modes;
     EMACS_INT doc;
 #ifdef HAVE_NATIVE_COMP
diff --git a/src/pdumper.c b/src/pdumper.c
index 24393e0366..0b74e6431f 100644
--- a/src/pdumper.c
+++ b/src/pdumper.c
@@ -2876,13 +2876,13 @@ dump_subr (struct dump_context *ctx, const struct Lisp_Subr *subr)
       dump_remember_cold_op (ctx,
                              COLD_OP_NATIVE_SUBR,
 			     make_lisp_ptr ((void *) subr, Lisp_Vectorlike));
-      dump_field_lv (ctx, &out, subr, &subr->native_intspec, WEIGHT_NORMAL);
+      dump_field_lv (ctx, &out, subr, &subr->intspec.native, WEIGHT_NORMAL);
       dump_field_lv (ctx, &out, subr, &subr->command_modes, WEIGHT_NORMAL);
     }
   else
     {
       dump_field_emacs_ptr (ctx, &out, subr, &subr->symbol_name);
-      dump_field_emacs_ptr (ctx, &out, subr, &subr->intspec);
+      dump_field_emacs_ptr (ctx, &out, subr, &subr->intspec.string);
       dump_field_emacs_ptr (ctx, &out, subr, &subr->command_modes);
     }
   DUMP_FIELD_COPY (&out, subr, doc);
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-19  2:35 ` Po Lu
@ 2022-04-19  4:19   ` Alan Third
  2022-04-19  4:24     ` Po Lu
                       ` (2 more replies)
  0 siblings, 3 replies; 65+ messages in thread
From: Alan Third @ 2022-04-19  4:19 UTC (permalink / raw)
  To: Po Lu
  Cc: Mattias Engdegård, Keith David Bershatsky, Paul Eggert,
	emacs-devel

[-- Attachment #1: Type: text/plain, Size: 1511 bytes --]

On Tue, Apr 19, 2022 at 10:35:38AM +0800, Po Lu wrote:
> Keith David Bershatsky <esq@lawlist.com> writes:
> 
> > I located just one instance of 1060 and changed it to 1068 per your
> > suggestion.  The build generated one warning during the nsterm.m
> > section, and then moved on to nsfns.m, where the build stopped.
> 
> I think you meant nsmenu.m.
> 
> >   CC       nsmenu.o
> > In file included from nsmenu.m:28:
> > lisp.h:2156: warning: declaration does not declare anything
> > nsmenu.m: In function '-[EmacsMenu fillWithWidgetValue:]':
> > nsmenu.m:652: error: stray '@' in program
> > nsmenu.m:652: error: field name not in record or union initializer
> > nsmenu.m:652: error: (near initialization for 'font_attribs')
> > nsmenu.m:652: warning: incompatible Objective-C types initializing 'struct NSFont *', expected 'struct NSDictionary *'
> 
> I don't know what "@" means in Objective-C, and it seems that GCC
> doesn't support such a feature.  Would someone please explain this piece
> of code?
> 
>   NSDictionary *font_attribs = @{NSFontAttributeName: menuFont};

Welcome to the wonderful world of Objective C under GCC.

The attached should fix this particular error.

These problems will need to be fixed in the emacs-28 branch, assuming
we're going to continue supporting macOS 10.6.

FWIW, I've moved away from trying to hide warnings generated on older
versions of macOS to try and avoid the difficult to understand #if
constructions we've previously used throughout the code.
-- 
Alan Third

[-- Attachment #2: 0001-Fix-nsmenu-compilation-under-macOS-10.6.patch --]
[-- Type: text/x-diff, Size: 1827 bytes --]

From f11340a5a5d234b57022908483979dfa0a9ccb99 Mon Sep 17 00:00:00 2001
From: Alan Third <alan@idiocy.org>
Date: Tue, 19 Apr 2022 05:05:17 +0100
Subject: [PATCH] Fix nsmenu compilation under macOS 10.6

* src/nsmenu.m ([EmacsMenu fillWithWidgetValue:]): Replace modern
shorthand dictionary and array definitions.
---
 src/nsmenu.m | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/nsmenu.m b/src/nsmenu.m
index 81d7cd2da1..0f7d1fb98f 100644
--- a/src/nsmenu.m
+++ b/src/nsmenu.m
@@ -649,7 +649,8 @@ - (void)fillWithWidgetValue: (void *)wvptr
      work around it by using tabs to split the title into two
      columns.  */
   NSFont *menuFont = [NSFont menuFontOfSize:0];
-  NSDictionary *font_attribs = @{NSFontAttributeName: menuFont};
+  NSDictionary *font_attribs = [NSDictionary dictionaryWithObjectsAndKeys:
+                                               menuFont, NSFontAttributeName, nil];
   CGFloat maxNameWidth = 0;
   CGFloat maxKeyWidth = 0;
 
@@ -677,11 +678,12 @@ - (void)fillWithWidgetValue: (void *)wvptr
   NSTextTab *tab =
     [[[NSTextTab alloc] initWithTextAlignment: NSTextAlignmentRight
                                      location: maxWidth
-                                      options: @{}] autorelease];
+                                      options: [NSDictionary dictionary]] autorelease];
   NSMutableParagraphStyle *pstyle = [[[NSMutableParagraphStyle alloc] init]
                                       autorelease];
-  [pstyle setTabStops: @[tab]];
-  attributes = @{NSParagraphStyleAttributeName: pstyle};
+  [pstyle setTabStops: [NSArray arrayWithObject:tab]];
+  attributes = [NSDictionary dictionaryWithObjectsAndKeys:
+                               pstyle, NSParagraphStyleAttributeName, nil];
 #endif
 
   /* clear existing contents */
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-19  4:19   ` Alan Third
@ 2022-04-19  4:24     ` Po Lu
  2022-04-19  6:04     ` Eli Zaretskii
  2022-04-20  1:23     ` Po Lu
  2 siblings, 0 replies; 65+ messages in thread
From: Po Lu @ 2022-04-19  4:24 UTC (permalink / raw)
  To: Alan Third
  Cc: Keith David Bershatsky, emacs-devel, Mattias Engdegård,
	Paul Eggert

Alan Third <alan@idiocy.org> writes:

> Welcome to the wonderful world of Objective C under GCC.
>
> The attached should fix this particular error.
>
> These problems will need to be fixed in the emacs-28 branch, assuming
> we're going to continue supporting macOS 10.6.
>
> FWIW, I've moved away from trying to hide warnings generated on older
> versions of macOS to try and avoid the difficult to understand #if
> constructions we've previously used throughout the code.

Thanks for clarifying, I think I understand what those constructs mean
now.

> Alan Third
>
> From f11340a5a5d234b57022908483979dfa0a9ccb99 Mon Sep 17 00:00:00 2001
> From: Alan Third <alan@idiocy.org>
> Date: Tue, 19 Apr 2022 05:05:17 +0100
> Subject: [PATCH] Fix nsmenu compilation under macOS 10.6
>
> * src/nsmenu.m ([EmacsMenu fillWithWidgetValue:]): Replace modern
> shorthand dictionary and array definitions.
> ---
>  src/nsmenu.m | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
>
> diff --git a/src/nsmenu.m b/src/nsmenu.m
> index 81d7cd2da1..0f7d1fb98f 100644
> --- a/src/nsmenu.m
> +++ b/src/nsmenu.m
> @@ -649,7 +649,8 @@ - (void)fillWithWidgetValue: (void *)wvptr
>       work around it by using tabs to split the title into two
>       columns.  */
>    NSFont *menuFont = [NSFont menuFontOfSize:0];
> -  NSDictionary *font_attribs = @{NSFontAttributeName: menuFont};
> +  NSDictionary *font_attribs = [NSDictionary dictionaryWithObjectsAndKeys:
> +                                               menuFont, NSFontAttributeName, nil];
>    CGFloat maxNameWidth = 0;
>    CGFloat maxKeyWidth = 0;
>  
> @@ -677,11 +678,12 @@ - (void)fillWithWidgetValue: (void *)wvptr
>    NSTextTab *tab =
>      [[[NSTextTab alloc] initWithTextAlignment: NSTextAlignmentRight
>                                       location: maxWidth
> -                                      options: @{}] autorelease];
> +                                      options: [NSDictionary dictionary]] autorelease];
>    NSMutableParagraphStyle *pstyle = [[[NSMutableParagraphStyle alloc] init]
>                                        autorelease];
> -  [pstyle setTabStops: @[tab]];
> -  attributes = @{NSParagraphStyleAttributeName: pstyle};
> +  [pstyle setTabStops: [NSArray arrayWithObject:tab]];
> +  attributes = [NSDictionary dictionaryWithObjectsAndKeys:
> +                               pstyle, NSParagraphStyleAttributeName, nil];
>  #endif
>  
>    /* clear existing contents */



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-19  4:36 Keith David Bershatsky
  2022-04-19  4:38 ` Po Lu
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-19  4:36 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

The latest patch from Alan applied without issue, but there is still something that stops the build at nsmenu.m

  CC       nsfns.o
In file included from nsfns.m:36:
lisp.h:2156: warning: declaration does not declare anything
nsfns.m:1099: warning: braces around scalar initializer
nsfns.m:1099: warning: (near initialization for 'Sx_create_frame.s.command_modes')
nsfns.m:1528: warning: braces around scalar initializer
nsfns.m:1528: warning: (near initialization for 'Sns_frame_list_z_order.s.command_modes')
nsfns.m:1559: warning: braces around scalar initializer
nsfns.m:1559: warning: (near initialization for 'Sns_frame_restack.s.command_modes')
nsfns.m:1590: warning: braces around scalar initializer
nsfns.m:1590: warning: (near initialization for 'Sns_popup_font_panel.s.command_modes')
nsfns.m:1590: warning: initialization from incompatible pointer type
nsfns.m:1611: warning: braces around scalar initializer
nsfns.m:1611: warning: (near initialization for 'Sns_popup_color_panel.s.command_modes')
nsfns.m:1611: warning: initialization from incompatible pointer type
nsfns.m:1664: warning: braces around scalar initializer
nsfns.m:1664: warning: (near initialization for 'Sns_read_file_name.s.command_modes')
nsfns.m:1782: warning: braces around scalar initializer
nsfns.m:1782: warning: (near initialization for 'Sns_get_resource.s.command_modes')
nsfns.m:1802: warning: braces around scalar initializer
nsfns.m:1802: warning: (near initialization for 'Sns_set_resource.s.command_modes')
nsfns.m:1829: warning: braces around scalar initializer
nsfns.m:1829: warning: (near initialization for 'Sx_server_max_request_size.s.command_modes')
nsfns.m:1842: warning: braces around scalar initializer
nsfns.m:1842: warning: (near initialization for 'Sx_server_vendor.s.command_modes')
nsfns.m:1855: warning: braces around scalar initializer
nsfns.m:1855: warning: (near initialization for 'Sx_server_version.s.command_modes')
nsfns.m:1870: warning: braces around scalar initializer
nsfns.m:1870: warning: (near initialization for 'Sx_display_screens.s.command_modes')
nsfns.m:1879: warning: braces around scalar initializer
nsfns.m:1879: warning: (near initialization for 'Sx_display_mm_height.s.command_modes')
nsfns.m:1889: warning: braces around scalar initializer
nsfns.m:1889: warning: (near initialization for 'Sx_display_mm_width.s.command_modes')
nsfns.m:1899: warning: braces around scalar initializer
nsfns.m:1899: warning: (near initialization for 'Sx_display_backing_store.s.command_modes')
nsfns.m:1923: warning: braces around scalar initializer
nsfns.m:1923: warning: (near initialization for 'Sx_display_visual_class.s.command_modes')
nsfns.m:1950: warning: braces around scalar initializer
nsfns.m:1950: warning: (near initialization for 'Sx_display_save_under.s.command_modes')
nsfns.m:1974: warning: braces around scalar initializer
nsfns.m:1974: warning: (near initialization for 'Sx_open_connection.s.command_modes')
nsfns.m:1999: warning: braces around scalar initializer
nsfns.m:1999: warning: (near initialization for 'Sx_close_connection.s.command_modes')
nsfns.m:2010: warning: braces around scalar initializer
nsfns.m:2010: warning: (near initialization for 'Sx_display_list.s.command_modes')
nsfns.m:2024: warning: braces around scalar initializer
nsfns.m:2024: warning: (near initialization for 'Sns_hide_others.s.command_modes')
nsfns.m:2034: warning: braces around scalar initializer
nsfns.m:2034: warning: (near initialization for 'Sns_hide_emacs.s.command_modes')
nsfns.m:2067: warning: braces around scalar initializer
nsfns.m:2067: warning: (near initialization for 'Sns_emacs_info_panel.s.command_modes')
nsfns.m:2078: warning: braces around scalar initializer
nsfns.m:2078: warning: (near initialization for 'Sns_font_name.s.command_modes')
nsfns.m:2098: warning: braces around scalar initializer
nsfns.m:2098: warning: (near initialization for 'Sns_list_colors.s.command_modes')
nsfns.m:2138: warning: braces around scalar initializer
nsfns.m:2138: warning: (near initialization for 'Sns_list_services.s.command_modes')
nsfns.m:2163: warning: braces around scalar initializer
nsfns.m:2163: warning: (near initialization for 'Sns_perform_service.s.command_modes')
nsfns.m:2261: warning: braces around scalar initializer
nsfns.m:2261: warning: (near initialization for 'Sns_do_applescript.s.command_modes')
nsfns.m:2419: warning: braces around scalar initializer
nsfns.m:2419: warning: (near initialization for 'Sxw_color_defined_p.s.command_modes')
nsfns.m:2429: warning: braces around scalar initializer
nsfns.m:2429: warning: (near initialization for 'Sxw_color_values.s.command_modes')
nsfns.m:2454: warning: braces around scalar initializer
nsfns.m:2454: warning: (near initialization for 'Sxw_display_color_p.s.command_modes')
nsfns.m:2471: warning: braces around scalar initializer
nsfns.m:2471: warning: (near initialization for 'Sx_display_grayscale_p.s.command_modes')
nsfns.m:2485: warning: braces around scalar initializer
nsfns.m:2485: warning: (near initialization for 'Sx_display_pixel_width.s.command_modes')
nsfns.m:2496: warning: braces around scalar initializer
nsfns.m:2496: warning: (near initialization for 'Sx_display_pixel_height.s.command_modes')
nsfns.m:2637: warning: braces around scalar initializer
nsfns.m:2637: warning: (near initialization for 'Sns_display_monitor_attributes_list.s.command_modes')
nsfns.m:2741: warning: braces around scalar initializer
nsfns.m:2741: warning: (near initialization for 'Sx_display_planes.s.command_modes')
nsfns.m:2752: warning: braces around scalar initializer
nsfns.m:2752: warning: (near initialization for 'Sx_display_color_cells.s.command_modes')
nsfns.m:2841: warning: braces around scalar initializer
nsfns.m:2841: warning: (near initialization for 'Sx_show_tip.s.command_modes')
nsfns.m:2904: warning: braces around scalar initializer
nsfns.m:2904: warning: (near initialization for 'Sx_hide_tip.s.command_modes')
nsfns.m:2981: warning: braces around scalar initializer
nsfns.m:2981: warning: (near initialization for 'Sns_frame_geometry.s.command_modes')
nsfns.m:3025: warning: braces around scalar initializer
nsfns.m:3025: warning: (near initialization for 'Sns_frame_edges.s.command_modes')
nsfns.m:3049: warning: braces around scalar initializer
nsfns.m:3049: warning: (near initialization for 'Sns_set_mouse_absolute_pixel_position.s.command_modes')
nsfns.m:3091: warning: braces around scalar initializer
nsfns.m:3091: warning: (near initialization for 'Sns_mouse_absolute_pixel_position.s.command_modes')
nsfns.m:3110: warning: braces around scalar initializer
nsfns.m:3110: warning: (near initialization for 'Sns_show_character_palette.s.command_modes')
  CC       nsmenu.o
In file included from nsmenu.m:28:
lisp.h:2156: warning: declaration does not declare anything
nsmenu.m: In function '-[EmacsMenu fillWithWidgetValue:]':
nsmenu.m:679: error: 'NSTextAlignmentRight' undeclared (first use in this function)
nsmenu.m:679: error: (Each undeclared identifier is reported only once
nsmenu.m:679: error: for each function it appears in.)
nsmenu.m: At top level:
nsmenu.m:1942: warning: braces around scalar initializer
nsmenu.m:1942: warning: (near initialization for 'Sns_reset_menu.s.command_modes')
nsmenu.m:1951: warning: braces around scalar initializer
nsmenu.m:1951: warning: (near initialization for 'Smenu_or_popup_active_p.s.command_modes')
make[1]: *** [nsmenu.o] Error 1
make: *** [src] Error 2
~/Desktop/emacs $ git apply /Users/HOME/Desktop/0001-Fix-nsmenu-compilation-under-macOS-10.6.patch

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-18-2022 21:19:10] <19 Apr 2022 05:19:10 +0100>
> From: Alan Third <alan@idiocy.org>
> To: Po Lu <luangruo@yahoo.com>
> Cc: Keith David Bershatsky <esq@lawlist.com>, emacs-devel@gnu.org, Mattias Engdegård <mattiase@acm.org>, Paul Eggert <eggert@cs.ucla.edu>
> Subject: Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-19  4:36 Keith David Bershatsky
@ 2022-04-19  4:38 ` Po Lu
  0 siblings, 0 replies; 65+ messages in thread
From: Po Lu @ 2022-04-19  4:38 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Alan Third, emacs-devel, Mattias Engdegård, Paul Eggert

Keith David Bershatsky <esq@lawlist.com> writes:

> In file included from nsmenu.m:28:
> lisp.h:2156: warning: declaration does not declare anything
> nsmenu.m: In function '-[EmacsMenu fillWithWidgetValue:]':
> nsmenu.m:679: error: 'NSTextAlignmentRight' undeclared (first use in this function)
> nsmenu.m:679: error: (Each undeclared identifier is reported only once
> nsmenu.m:679: error: for each function it appears in.)
> nsmenu.m: At top level:
> nsmenu.m:1942: warning: braces around scalar initializer
> nsmenu.m:1942: warning: (near initialization for 'Sns_reset_menu.s.command_modes')
> nsmenu.m:1951: warning: braces around scalar initializer
> nsmenu.m:1951: warning: (near initialization for 'Smenu_or_popup_active_p.s.command_modes')
> make[1]: *** [nsmenu.o] Error 1
> make: *** [src] Error 2
> ~/Desktop/emacs $ git apply /Users/HOME/Desktop/0001-Fix-nsmenu-compilation-under-macOS-10.6.patch

Hmm... Would it work to replicate the right-alignment with some spaces
or something to that effect?

Alan?



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-19  4:19   ` Alan Third
  2022-04-19  4:24     ` Po Lu
@ 2022-04-19  6:04     ` Eli Zaretskii
  2022-04-20  1:23     ` Po Lu
  2 siblings, 0 replies; 65+ messages in thread
From: Eli Zaretskii @ 2022-04-19  6:04 UTC (permalink / raw)
  To: Alan Third; +Cc: luangruo, mattiase, esq, eggert, emacs-devel

> Date: Tue, 19 Apr 2022 05:19:10 +0100
> From: Alan Third <alan@idiocy.org>
> Cc: Mattias Engdegård <mattiase@acm.org>,
>  Keith David Bershatsky <esq@lawlist.com>, Paul Eggert <eggert@cs.ucla.edu>,
>  emacs-devel@gnu.org
> 
> >   NSDictionary *font_attribs = @{NSFontAttributeName: menuFont};
> 
> Welcome to the wonderful world of Objective C under GCC.
> 
> The attached should fix this particular error.
> 
> These problems will need to be fixed in the emacs-28 branch, assuming
> we're going to continue supporting macOS 10.6.

Since this affects only the macOS builds, if you consider these
changes safe enough for the release branch, I don't object to
installing this there.  But please take into account that there are
several other issues with that old version, and the changes proposed
for them would affect platforms other than macOS, and some of them are
on very low level, and so cannot be installed on the release branch at
this time.  Which means that a build of Emacs 28 on those old macOS
platforms will probably not work without manual patching anyway.

> FWIW, I've moved away from trying to hide warnings generated on older
> versions of macOS to try and avoid the difficult to understand #if
> constructions we've previously used throughout the code.

I agree.  We do the same for other old platforms.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-19  4:19   ` Alan Third
  2022-04-19  4:24     ` Po Lu
  2022-04-19  6:04     ` Eli Zaretskii
@ 2022-04-20  1:23     ` Po Lu
  2022-04-20  8:07       ` Alan Third
  2 siblings, 1 reply; 65+ messages in thread
From: Po Lu @ 2022-04-20  1:23 UTC (permalink / raw)
  To: Alan Third
  Cc: Keith David Bershatsky, emacs-devel, Mattias Engdegård,
	Paul Eggert

Alan Third <alan@idiocy.org> writes:

> The attached should fix this particular error.

What about this one?

>> nsmenu.m:678: error: 'NSTextAlignmentRight' undeclared (first use in
>> this function)

I think we used to insert spaces to align the keys on the right, judging
by an old copy of the code, but I'm not sure.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-20  1:23     ` Po Lu
@ 2022-04-20  8:07       ` Alan Third
  0 siblings, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-20  8:07 UTC (permalink / raw)
  To: Po Lu
  Cc: Mattias Engdegård, Keith David Bershatsky, Paul Eggert,
	emacs-devel

[-- Attachment #1: Type: text/plain, Size: 520 bytes --]

On Wed, Apr 20, 2022 at 09:23:22AM +0800, Po Lu wrote:
> Alan Third <alan@idiocy.org> writes:
> 
> > The attached should fix this particular error.
> 
> What about this one?
> 
> >> nsmenu.m:678: error: 'NSTextAlignmentRight' undeclared (first use in
> >> this function)
> 
> I think we used to insert spaces to align the keys on the right, judging
> by an old copy of the code, but I'm not sure.

There's no need to go back to code that didn't work just because Apple
incorrectly documents their enums.

-- 
Alan Third

[-- Attachment #2: v3-0001-Fix-nsmenu-compilation-under-macOS-10.6.patch --]
[-- Type: text/x-diff, Size: 2472 bytes --]

From aba5cce5fa846094f6cbb78658d69ea0e3af7a96 Mon Sep 17 00:00:00 2001
From: Alan Third <alan@idiocy.org>
Date: Tue, 19 Apr 2022 05:05:17 +0100
Subject: [PATCH v3] Fix nsmenu compilation under macOS 10.6

* src/nsmenu.m ([EmacsMenu fillWithWidgetValue:]): Replace modern
shorthand dictionary and array definitions.
* src/nsterm.h (NSTextAlignmentRight): Redefine if necessary.
---
 src/nsmenu.m | 10 ++++++----
 src/nsterm.h |  2 +-
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/src/nsmenu.m b/src/nsmenu.m
index 81d7cd2da1..0f7d1fb98f 100644
--- a/src/nsmenu.m
+++ b/src/nsmenu.m
@@ -649,7 +649,8 @@ - (void)fillWithWidgetValue: (void *)wvptr
      work around it by using tabs to split the title into two
      columns.  */
   NSFont *menuFont = [NSFont menuFontOfSize:0];
-  NSDictionary *font_attribs = @{NSFontAttributeName: menuFont};
+  NSDictionary *font_attribs = [NSDictionary dictionaryWithObjectsAndKeys:
+                                               menuFont, NSFontAttributeName, nil];
   CGFloat maxNameWidth = 0;
   CGFloat maxKeyWidth = 0;
 
@@ -677,11 +678,12 @@ - (void)fillWithWidgetValue: (void *)wvptr
   NSTextTab *tab =
     [[[NSTextTab alloc] initWithTextAlignment: NSTextAlignmentRight
                                      location: maxWidth
-                                      options: @{}] autorelease];
+                                      options: [NSDictionary dictionary]] autorelease];
   NSMutableParagraphStyle *pstyle = [[[NSMutableParagraphStyle alloc] init]
                                       autorelease];
-  [pstyle setTabStops: @[tab]];
-  attributes = @{NSParagraphStyleAttributeName: pstyle};
+  [pstyle setTabStops: [NSArray arrayWithObject:tab]];
+  attributes = [NSDictionary dictionaryWithObjectsAndKeys:
+                               pstyle, NSParagraphStyleAttributeName, nil];
 #endif
 
   /* clear existing contents */
diff --git a/src/nsterm.h b/src/nsterm.h
index 4cba5c0be8..4cb7475235 100644
--- a/src/nsterm.h
+++ b/src/nsterm.h
@@ -1290,8 +1290,8 @@ #define NSWindowStyleMaskUtilityWindow     NSUtilityWindowMask
 #define NSAlertStyleCritical               NSCriticalAlertStyle
 #define NSControlSizeRegular               NSRegularControlSize
 #define NSCompositingOperationCopy         NSCompositeCopy
+#define NSTextAlignmentRight               NSRightTextAlignment
 
-/* And adds NSWindowStyleMask.  */
 #ifdef __OBJC__
 typedef NSUInteger NSWindowStyleMask;
 #endif
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-20 13:55 Keith David Bershatsky
  2022-04-20 16:48 ` Alan Third
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-20 13:55 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

Using the most recent patch by Alan permits the build to now proceed to macfont.m, where it stops:

  CC       macfont.o
In file included from macfont.m:24:
lisp.h:2156: warning: declaration does not declare anything
macfont.m: In function 'mac_font_shape_1':
macfont.m:425: warning: 'NSLayoutManager' may not respond to '-getGlyphsInRange:glyphs:properties:characterIndexes:bidiLevels:'
macfont.m:425: warning: (Messages without a matching method signature
macfont.m:425: warning: will be assumed to return 'id' and accept
macfont.m:425: warning: '...' as arguments.)
macfont.m: In function 'mac_font_create_preferred_family_for_attributes':
macfont.m:3575: error: 'NSOperatingSystemVersion' undeclared (first use in this function)
macfont.m:3575: error: (Each undeclared identifier is reported only once
macfont.m:3575: error: for each function it appears in.)
macfont.m:3575: error: expected ')' before '{' token
macfont.m:3576: warning: 'NSProcessInfo' may not respond to '-isOperatingSystemAtLeastVersion:'
make[1]: *** [macfont.o] Error 1
make: *** [src] Error 2
~/Desktop/emacs $

Thanks,

Keith



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-20 13:55 Keith David Bershatsky
@ 2022-04-20 16:48 ` Alan Third
  0 siblings, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-20 16:48 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 1432 bytes --]

On Wed, Apr 20, 2022 at 06:55:51AM -0700, Keith David Bershatsky wrote:
> Using the most recent patch by Alan permits the build to now proceed to macfont.m, where it stops:
> 
>   CC       macfont.o
> In file included from macfont.m:24:
> lisp.h:2156: warning: declaration does not declare anything
> macfont.m: In function 'mac_font_shape_1':
> macfont.m:425: warning: 'NSLayoutManager' may not respond to '-getGlyphsInRange:glyphs:properties:characterIndexes:bidiLevels:'
> macfont.m:425: warning: (Messages without a matching method signature
> macfont.m:425: warning: will be assumed to return 'id' and accept
> macfont.m:425: warning: '...' as arguments.)

This one is funny since he code's been there since 2017, and according
to Apple the method is supported in 10.6, so I'm leaving it for now
since there's no error.

> macfont.m: In function 'mac_font_create_preferred_family_for_attributes':
> macfont.m:3575: error: 'NSOperatingSystemVersion' undeclared (first use in this function)
> macfont.m:3575: error: (Each undeclared identifier is reported only once
> macfont.m:3575: error: for each function it appears in.)
> macfont.m:3575: error: expected ')' before '{' token
> macfont.m:3576: warning: 'NSProcessInfo' may not respond to '-isOperatingSystemAtLeastVersion:'
> make[1]: *** [macfont.o] Error 1
> make: *** [src] Error 2
> ~/Desktop/emacs $

Please try the attached and let us know what happens.
-- 
Alan Third

[-- Attachment #2: v4-0001-Fix-nsmenu-compilation-under-macOS-10.6.patch --]
[-- Type: text/x-diff, Size: 3776 bytes --]

From 6a778c018f0e444e2ee9b8694ac9dbac8387e32c Mon Sep 17 00:00:00 2001
From: Alan Third <alan@idiocy.org>
Date: Tue, 19 Apr 2022 05:05:17 +0100
Subject: [PATCH v4] Fix nsmenu compilation under macOS 10.6

* src/nsmenu.m ([EmacsMenu fillWithWidgetValue:]): Replace modern
shorthand dictionary and array definitions.
* src/nsterm.h (NSTextAlignmentRight): Redefine if necessary.
* src/macfont.m (mac_font_create_preferred_family_for_attributes):
isOperatingSystemAtLeastVersion is new in macOS 10.10, so it's
probably wrong to use it to check whether we're below 10.9.
---
 src/macfont.m | 11 +++++------
 src/nsmenu.m  | 10 ++++++----
 src/nsterm.h  |  2 +-
 3 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/src/macfont.m b/src/macfont.m
index 34e48afb98..eaac47edb8 100644
--- a/src/macfont.m
+++ b/src/macfont.m
@@ -3570,18 +3570,17 @@ So we use CTFontDescriptorCreateMatchingFontDescriptor (no
 
       if (languages && CFArrayGetCount (languages) > 0)
         {
-          if ([[NSProcessInfo processInfo]
-                isOperatingSystemAtLeastVersion:
-                  ((NSOperatingSystemVersion){
-                    .majorVersion = 10, .minorVersion = 9})])
-            values[num_values++] = CFArrayGetValueAtIndex (languages, 0);
-          else
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 10900
+          if (CTGetCoreTextVersion () < kCTVersionNumber10_9)
             {
               CFCharacterSetRef charset =
                 CFDictionaryGetValue (attributes, kCTFontCharacterSetAttribute);
 
               result = mac_font_copy_default_name_for_charset_and_languages (charset, languages);
             }
+          else
+#endif
+            values[num_values++] = CFArrayGetValueAtIndex (languages, 0);
         }
       if (result == NULL)
         {
diff --git a/src/nsmenu.m b/src/nsmenu.m
index 81d7cd2da1..0f7d1fb98f 100644
--- a/src/nsmenu.m
+++ b/src/nsmenu.m
@@ -649,7 +649,8 @@ - (void)fillWithWidgetValue: (void *)wvptr
      work around it by using tabs to split the title into two
      columns.  */
   NSFont *menuFont = [NSFont menuFontOfSize:0];
-  NSDictionary *font_attribs = @{NSFontAttributeName: menuFont};
+  NSDictionary *font_attribs = [NSDictionary dictionaryWithObjectsAndKeys:
+                                               menuFont, NSFontAttributeName, nil];
   CGFloat maxNameWidth = 0;
   CGFloat maxKeyWidth = 0;
 
@@ -677,11 +678,12 @@ - (void)fillWithWidgetValue: (void *)wvptr
   NSTextTab *tab =
     [[[NSTextTab alloc] initWithTextAlignment: NSTextAlignmentRight
                                      location: maxWidth
-                                      options: @{}] autorelease];
+                                      options: [NSDictionary dictionary]] autorelease];
   NSMutableParagraphStyle *pstyle = [[[NSMutableParagraphStyle alloc] init]
                                       autorelease];
-  [pstyle setTabStops: @[tab]];
-  attributes = @{NSParagraphStyleAttributeName: pstyle};
+  [pstyle setTabStops: [NSArray arrayWithObject:tab]];
+  attributes = [NSDictionary dictionaryWithObjectsAndKeys:
+                               pstyle, NSParagraphStyleAttributeName, nil];
 #endif
 
   /* clear existing contents */
diff --git a/src/nsterm.h b/src/nsterm.h
index 4cba5c0be8..4cb7475235 100644
--- a/src/nsterm.h
+++ b/src/nsterm.h
@@ -1290,8 +1290,8 @@ #define NSWindowStyleMaskUtilityWindow     NSUtilityWindowMask
 #define NSAlertStyleCritical               NSCriticalAlertStyle
 #define NSControlSizeRegular               NSRegularControlSize
 #define NSCompositingOperationCopy         NSCompositeCopy
+#define NSTextAlignmentRight               NSRightTextAlignment
 
-/* And adds NSWindowStyleMask.  */
 #ifdef __OBJC__
 typedef NSUInteger NSWindowStyleMask;
 #endif
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-21  0:51 Keith David Bershatsky
  2022-04-21  2:05 ` Po Lu
  2022-04-21  5:09 ` Alan Third
  0 siblings, 2 replies; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-21  0:51 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 9097 bytes --]

Emacs master (as of commit f98c3f4426fecf794f47f27aebe1f3b854fb1bfd) now builds successfully on OSX 10.6.8 using all of the recent patches, plus the suggestion by Po to use the number 1068 instead of 1060 in nsterm.m.  Emacs crashes, however, when trying to launch it.  To help keep track of where I believe we are in the evolution of patches, I have attached what I believe to be a combined patch of the work done by Alan and Po, plus the modification of number 1060 to 1068 in nsterm.m.  Here is a backtrace:

Last login: Wed Apr 20 16:44:00 on console
server:~ HOME$ ulimit -S -s unlimitedserver:~ HOME$ cd /Users/HOME/Desktop/emacs/srcserver:src HOME$ /Users/HOME/.0.data/.0.emacs/.0.macports_2_3_3/bin/ggdb_mp /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/EmacsGNU gdb (GDB) 7.7.1
Copyright (C) 2014 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin10.8.0".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs...done.
SIGINT is used by the debugger.
Are you sure you want to change it? (y or n) [answered Y; input not from terminal]
DISPLAY = /tmp/launch-dmF4wz/org.x:0
TERM = xterm-color
Breakpoint 1 at 0x1000e9ee0: file emacs.c, line 421.
(gdb) run
Starting program: /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs 
2022-04-20 17:40:18.996 Emacs[29141:60f] *** __NSAutoreleaseNoPool(): Object 0x100918460 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-20 17:40:18.998 Emacs[29141:60f] *** __NSAutoreleaseNoPool(): Object 0x10091c290 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-20 17:40:18.998 Emacs[29141:60f] *** __NSAutoreleaseNoPool(): Object 0x1009185f0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-20 17:40:18.998 Emacs[29141:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cc40 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-20 17:40:18.999 Emacs[29141:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cd30 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-20 17:40:18.999 Emacs[29141:60f] *** __NSAutoreleaseNoPool(): Object 0x10091ce90 of class NSCFData autoreleased with no pool in place - just leaking
[New Thread 0x1903 of process 29141]
[New Thread 0x1a03 of process 29141]
[New Thread 0x1b03 of process 29141]
2022-04-20 17:40:19.560 Emacs[29141:60f] An uncaught exception was raised
2022-04-20 17:40:19.560 Emacs[29141:60f] *** -getRed:green:blue:alpha: not defined for the NSColor NSCustomColorSpace Device RGB colorspace 0 0 0 1; need to first convert colorspace.
2022-04-20 17:40:19.561 Emacs[29141:60f] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -getRed:green:blue:alpha: not defined for the NSColor NSCustomColorSpace Device RGB colorspace 0 0 0 1; need to first convert colorspace.'
*** Call stack at first throw:
(
	0   CoreFoundation                      0x00007fff899577b4 __exceptionPreprocess + 180
	1   libobjc.A.dylib                     0x00007fff8012bf03 objc_exception_throw + 45
	2   CoreFoundation                      0x00007fff899575d7 +[NSException raise:format:arguments:] + 103
	3   CoreFoundation                      0x00007fff89957564 +[NSException raise:format:] + 148
	4   Emacs                               0x000000010021cc44 -[NSColor(EmacsColor) unsignedLong] + 36
	5   Emacs                               0x00000001002343ff ns_set_foreground_color + 127
	6   Emacs                               0x0000000100018391 gui_set_frame_parameters + 1553
	7   Emacs                               0x000000010001965e gui_default_parameter + 174
	8   Emacs                               0x000000010023952f Fx_create_frame + 1631
	9   Emacs                               0x000000010018c5d0 funcall_subr + 480
	10  Emacs                               0x00000001001d98ed exec_byte_code + 11085
	11  Emacs                               0x000000010018aa44 Ffuncall + 324
	12  Emacs                               0x000000010018e004 Fapply + 756
	13  Emacs                               0x000000010018c470 funcall_subr + 128
	14  Emacs                               0x00000001001d98ed exec_byte_code + 11085
	15  Emacs                               0x000000010018f426 apply_lambda + 262
	16  Emacs                               0x0000000100189509 eval_sub + 1481
	17  Emacs                               0x000000010018f09d Feval + 61
	18  Emacs                               0x0000000100186653 internal_condition_case + 99
	19  Emacs                               0x00000001000efac8 top_level_1 + 88
	20  Emacs                               0x00000001001866d7 internal_catch + 87
	21  Emacs                               0x00000001000ef9d8 command_loop + 184
	22  Emacs                               0x00000001000f3ef6 recursive_edit_1 + 182
	23  Emacs                               0x00000001000f40d4 Frecursive_edit + 244
	24  Emacs                               0x00000001000eb5a5 main + 4805
	25  Emacs                               0x00000001000015c4 start + 52
	26  ???                                 0x0000000000000001 0x0 + 1
)
terminate called after throwing an instance of 'NSException'
[New Thread 0x1c03 of process 29141]

Program received signal SIGABRT, Aborted.
0x00007fff8a6120b6 in t.2065 () from /usr/lib/libSystem.B.dylib
(gdb) bt
#0  0x00007fff8a6120b6 in t.2065 () from /usr/lib/libSystem.B.dylib
#1  0x00007fff8a6b29f6 in t.2066 () from /usr/lib/libSystem.B.dylib
#2  0x00007fff838465d2 in ?? () from /usr/lib/libstdc++.6.dylib
#3  0x00007fff8012fb39 in ?? () from /usr/lib/libobjc.A.dylib
#4  0x00007fff83844ae1 in ?? () from /usr/lib/libstdc++.6.dylib
#5  0x00007fff83844b16 in ?? () from /usr/lib/libstdc++.6.dylib
#6  0x00007fff83844bfc in ?? () from /usr/lib/libstdc++.6.dylib
#7  0x00007fff8012bfa2 in ?? () from /usr/lib/libobjc.A.dylib
#8  0x00007fff899575d7 in +[NSException raise:format:arguments:] ()
   from /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
#9  0x00007fff89957564 in +[NSException raise:format:] ()
   from /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
#10 0x000000010021cc44 in -[NSColor(EmacsColor) unsignedLong] (self=0x71d5, 
    _cmd=<optimized out>) at nsterm.m:182
#11 0x00000001002343ff in ns_set_foreground_color (f=0x101166830, 
    arg=XIL(0x103627364), oldval=XIL(0)) at nsfns.m:255
#12 0x0000000100018391 in gui_set_frame_parameters (f=0x71d5, 
    alist=<optimized out>) at frame.c:4274
#13 0x000000010001965e in gui_default_parameter (f=0x101166830, 
    alist=<optimized out>, prop=XIL(0x69c0), deflt=XIL(0x103627364), 
    xprop=<optimized out>, xclass=<optimized out>, type=RES_TYPE_STRING)
    at frame.c:5469
#14 0x000000010023952f in Fx_create_frame (parms=XIL(0x1011037b3))
    at nsfns.m:1282
#15 0x000000010018c5d0 in funcall_subr (subr=0x10067ef00, numargs=1, 
    args=0x7fff5fbfeb88) at eval.c:2911
#16 0x00000001001d98ed in exec_byte_code (fun=XIL(0x71d5), args_template=6, 
    nargs=0, args=0x7fff5fbfeb88) at bytecode.c:809
#17 0x000000010018aa44 in Ffuncall (nargs=<optimized out>, args=0x104800208)
    at eval.c:2873
#18 0x000000010018e004 in Fapply (nargs=2, args=0x104800208) at eval.c:2507
#19 0x000000010018c470 in funcall_subr (subr=0x1006784c0, numargs=2, 
    args=0x7fff5fbfeb88) at eval.c:2938
#20 0x00000001001d98ed in exec_byte_code (fun=XIL(0x71d5), args_template=6, 
    nargs=0, args=0x7fff5fbfeb88) at bytecode.c:809
#21 0x000000010018f426 in apply_lambda (fun=XIL(0x102a067c5), args=XIL(0), 
    count=...) at eval.c:2982
#22 0x0000000100189509 in eval_sub (form=<optimized out>) at eval.c:2472
#23 0x000000010018f09d in Feval (form=XIL(0x102fe1cab), 
    lexical=<optimized out>) at eval.c:2240
#24 0x0000000100186653 in internal_condition_case (
    bfun=0x1000ef900 <top_level_2>, handlers=<optimized out>, 
    hfun=0x1000f0860 <cmd_error>) at eval.c:1450
#25 0x00000001000efac8 in top_level_1 (ignore=<optimized out>)
    at keyboard.c:1159
#26 0x00000001001866d7 in internal_catch (tag=<optimized out>, 
    func=0x1000efa70 <top_level_1>, arg=XIL(0)) at eval.c:1180
#27 0x00000001000ef9d8 in command_loop () at keyboard.c:1119
#28 0x00000001000f3ef6 in recursive_edit_1 () at keyboard.c:729
#29 0x00000001000f40d4 in Frecursive_edit () at keyboard.c:812
#30 0x00000001000eb5a5 in main (argc=1, argv=0x7fff5fbff960) at emacs.c:2474

Lisp Backtrace:
Cannot access memory at address 0x74b78
(gdb) 


[-- Attachment #2: combined_patches_2020_04_20_a.diff --]
[-- Type: application/diff, Size: 8067 bytes --]

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-21  0:51 Keith David Bershatsky
@ 2022-04-21  2:05 ` Po Lu
  2022-04-21  5:09 ` Alan Third
  1 sibling, 0 replies; 65+ messages in thread
From: Po Lu @ 2022-04-21  2:05 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Alan Third, emacs-devel, Mattias Engdegård, Paul Eggert

Keith David Bershatsky <esq@lawlist.com> writes:

> Emacs master (as of commit f98c3f4426fecf794f47f27aebe1f3b854fb1bfd)
> now builds successfully on OSX 10.6.8 using all of the recent patches,
> plus the suggestion by Po to use the number 1068 instead of 1060 in
> nsterm.m.  Emacs crashes, however, when trying to launch it.  To help
> keep track of where I believe we are in the evolution of patches, I
> have attached what I believe to be a combined patch of the work done
> by Alan and Po, plus the modification of number 1060 to 1068 in
> nsterm.m.  Here is a backtrace:

Thanks.

Does this fix the crash?

diff --git a/src/nsterm.m b/src/nsterm.m
index 5a6a4d663b..edafdfc663 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -150,10 +150,11 @@ + (NSColor *)colorForEmacsRed:(CGFloat)red green:(CGFloat)green
                                 blue: blue
                                alpha: alpha];
 #endif
-  return [NSColor colorWithCalibratedRed: red
-                                   green: green
-                                    blue: blue
-                                   alpha: alpha];
+  return [[NSColor colorWithCalibratedRed: red
+				    green: green
+				     blue: blue
+				    alpha: alpha]
+	   colorUsingColorSpace: [NSColorSpace deviceRGBColorSpace]];
 }
 
 - (NSColor *)colorUsingDefaultColorSpace



^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-21  2:22 Keith David Bershatsky
  0 siblings, 0 replies; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-21  2:22 UTC (permalink / raw)
  To: Po Lu; +Cc: Mattias Engdegård, Alan Third, Paul Eggert, emacs-devel

I applied the suggested revision and here is the updated backtrace:

* * *
(gdb) run
Starting program: /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs 
2022-04-20 19:19:03.401 Emacs[11566:60f] *** __NSAutoreleaseNoPool(): Object 0x100918460 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-20 19:19:03.404 Emacs[11566:60f] *** __NSAutoreleaseNoPool(): Object 0x10091c290 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-20 19:19:03.404 Emacs[11566:60f] *** __NSAutoreleaseNoPool(): Object 0x1009185f0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-20 19:19:03.404 Emacs[11566:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cc40 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-20 19:19:03.405 Emacs[11566:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cd30 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-20 19:19:03.405 Emacs[11566:60f] *** __NSAutoreleaseNoPool(): Object 0x10091ce90 of class NSCFData autoreleased with no pool in place - just leaking
[New Thread 0x1903 of process 11566]
[New Thread 0x1a03 of process 11566]
[New Thread 0x1b03 of process 11566]
2022-04-20 19:19:03.995 Emacs[11566:60f] An uncaught exception was raised
2022-04-20 19:19:03.995 Emacs[11566:60f] *** -getRed:green:blue:alpha: not defined for the NSColor NSCustomColorSpace Device RGB colorspace 0 0 0 1; need to first convert colorspace.
2022-04-20 19:19:03.996 Emacs[11566:60f] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -getRed:green:blue:alpha: not defined for the NSColor NSCustomColorSpace Device RGB colorspace 0 0 0 1; need to first convert colorspace.'
*** Call stack at first throw:
(
	0   CoreFoundation                      0x00007fff899577b4 __exceptionPreprocess + 180
	1   libobjc.A.dylib                     0x00007fff8012bf03 objc_exception_throw + 45
	2   CoreFoundation                      0x00007fff899575d7 +[NSException raise:format:arguments:] + 103
	3   CoreFoundation                      0x00007fff89957564 +[NSException raise:format:] + 148
	4   Emacs                               0x000000010021cc24 -[NSColor(EmacsColor) unsignedLong] + 36
	5   Emacs                               0x00000001002343ff ns_set_foreground_color + 127
	6   Emacs                               0x0000000100018371 gui_set_frame_parameters + 1553
	7   Emacs                               0x000000010001963e gui_default_parameter + 174
	8   Emacs                               0x000000010023952f Fx_create_frame + 1631
	9   Emacs                               0x000000010018c5b0 funcall_subr + 480
	10  Emacs                               0x00000001001d98cd exec_byte_code + 11085
	11  Emacs                               0x000000010018aa24 Ffuncall + 324
	12  Emacs                               0x000000010018dfe4 Fapply + 756
	13  Emacs                               0x000000010018c450 funcall_subr + 128
	14  Emacs                               0x00000001001d98cd exec_byte_code + 11085
	15  Emacs                               0x000000010018f406 apply_lambda + 262
	16  Emacs                               0x00000001001894e9 eval_sub + 1481
	17  Emacs                               0x000000010018f07d Feval + 61
	18  Emacs                               0x0000000100186633 internal_condition_case + 99
	19  Emacs                               0x00000001000efaa8 top_level_1 + 88
	20  Emacs                               0x00000001001866b7 internal_catch + 87
	21  Emacs                               0x00000001000ef9b8 command_loop + 184
	22  Emacs                               0x00000001000f3ed6 recursive_edit_1 + 182
	23  Emacs                               0x00000001000f40b4 Frecursive_edit + 244
	24  Emacs                               0x00000001000eb585 main + 4805
	25  Emacs                               0x00000001000015a4 start + 52
	26  ???                                 0x0000000000000001 0x0 + 1
)
terminate called after throwing an instance of 'NSException'
[New Thread 0x1c03 of process 11566]

Program received signal SIGABRT, Aborted.
0x00007fff8a6120b6 in t.2065 () from /usr/lib/libSystem.B.dylib
(gdb) bt
#0  0x00007fff8a6120b6 in t.2065 () from /usr/lib/libSystem.B.dylib
#1  0x00007fff8a6b29f6 in t.2066 () from /usr/lib/libSystem.B.dylib
#2  0x00007fff838465d2 in ?? () from /usr/lib/libstdc++.6.dylib
#3  0x00007fff8012fb39 in ?? () from /usr/lib/libobjc.A.dylib
#4  0x00007fff83844ae1 in ?? () from /usr/lib/libstdc++.6.dylib
#5  0x00007fff83844b16 in ?? () from /usr/lib/libstdc++.6.dylib
#6  0x00007fff83844bfc in ?? () from /usr/lib/libstdc++.6.dylib
#7  0x00007fff8012bfa2 in ?? () from /usr/lib/libobjc.A.dylib
#8  0x00007fff899575d7 in +[NSException raise:format:arguments:] ()
   from /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
#9  0x00007fff89957564 in +[NSException raise:format:] ()
   from /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
#10 0x000000010021cc24 in -[NSColor(EmacsColor) unsignedLong] (self=0x2d2e, 
    _cmd=<optimized out>) at nsterm.m:183
#11 0x00000001002343ff in ns_set_foreground_color (f=0x10387aa30, 
    arg=XIL(0x10094fba4), oldval=XIL(0)) at nsfns.m:255
#12 0x0000000100018371 in gui_set_frame_parameters (f=0x2d2e, 
    alist=<optimized out>) at frame.c:4274
#13 0x000000010001963e in gui_default_parameter (f=0x10387aa30, 
    alist=<optimized out>, prop=XIL(0x69c0), deflt=XIL(0x10094fba4), 
    xprop=<optimized out>, xclass=<optimized out>, type=RES_TYPE_STRING)
    at frame.c:5469
#14 0x000000010023952f in Fx_create_frame (parms=XIL(0x1038183b3))
    at nsfns.m:1282
#15 0x000000010018c5b0 in funcall_subr (subr=0x10067ef00, numargs=1, 
    args=0x7fff5fbfeb88) at eval.c:2911
#16 0x00000001001d98cd in exec_byte_code (fun=make_fixnum(2891), 
    args_template=6, nargs=0, args=0x7fff5fbfeb88) at bytecode.c:809
#17 0x000000010018aa24 in Ffuncall (nargs=<optimized out>, args=0x104800208)
    at eval.c:2873
#18 0x000000010018dfe4 in Fapply (nargs=2, args=0x104800208) at eval.c:2507
#19 0x000000010018c450 in funcall_subr (subr=0x1006784c0, numargs=2, 
    args=0x7fff5fbfeb88) at eval.c:2938
#20 0x00000001001d98cd in exec_byte_code (fun=make_fixnum(2891), 
    args_template=6, nargs=0, args=0x7fff5fbfeb88) at bytecode.c:809
#21 0x000000010018f406 in apply_lambda (fun=XIL(0x102a067c5), args=XIL(0), 
    count=...) at eval.c:2982
#22 0x00000001001894e9 in eval_sub (form=<optimized out>) at eval.c:2472
#23 0x000000010018f07d in Feval (form=XIL(0x102fe1cab), 
    lexical=<optimized out>) at eval.c:2240
#24 0x0000000100186633 in internal_condition_case (
    bfun=0x1000ef8e0 <top_level_2>, handlers=<optimized out>, 
    hfun=0x1000f0840 <cmd_error>) at eval.c:1450
#25 0x00000001000efaa8 in top_level_1 (ignore=<optimized out>)
    at keyboard.c:1159
#26 0x00000001001866b7 in internal_catch (tag=<optimized out>, 
    func=0x1000efa50 <top_level_1>, arg=XIL(0)) at eval.c:1180
#27 0x00000001000ef9b8 in command_loop () at keyboard.c:1119
#28 0x00000001000f3ed6 in recursive_edit_1 () at keyboard.c:729
#29 0x00000001000f40b4 in Frecursive_edit () at keyboard.c:812
#30 0x00000001000eb585 in main (argc=1, argv=0x7fff5fbff960) at emacs.c:2474

Lisp Backtrace:
Cannot access memory at address 0x74b78
(gdb) 



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-21  0:51 Keith David Bershatsky
  2022-04-21  2:05 ` Po Lu
@ 2022-04-21  5:09 ` Alan Third
  1 sibling, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-21  5:09 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

On Wed, Apr 20, 2022 at 05:51:32PM -0700, Keith David Bershatsky wrote:
> 2022-04-20 17:40:19.560 Emacs[29141:60f] An uncaught exception was raised
> 2022-04-20 17:40:19.560 Emacs[29141:60f] *** -getRed:green:blue:alpha: not defined for the NSColor NSCustomColorSpace Device RGB colorspace 0 0 0 1; need to first convert colorspace.
> 2022-04-20 17:40:19.561 Emacs[29141:60f] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -getRed:green:blue:alpha: not defined for the NSColor NSCustomColorSpace Device RGB colorspace 0 0 0 1; need to first convert colorspace.'

Hi Keith,

Can you please try a couple of things?

In nsterm.m, in the function colorUsingDefaultColorSpace can you
change deviceRGBColorSpace to genericRGBColorSpace?

If that makes no difference, then in the function unsignedlong just
below it can you try changing

    [self getRed:&r green:&g blue:&b alpha:&a];

to

    [[self colorUsingDefaultColorSpace] getRed:&r green:&g blue:&b alpha:&a];

if that makes no difference, can you try both changes together?

Thanks!
-- 
Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-21 17:52 Keith David Bershatsky
  2022-04-21 19:21 ` Alan Third
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-21 17:52 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 2038 bytes --]

The gdb backtrace text file colorUsingDefaultColorSpace.txt relates to _only_ the change of deviceRGBColorSpace to genericRGBColorSpace.

The gdb backtrace text file unsignedlong.txt relates to _only_ the change the change of [self getRed:&r green:&g blue:&b alpha:&a]; to [[self colorUsingDefaultColorSpace] getRed:&r green:&g blue:&b alpha:&a];

The gdb backtrace text file both_changes.txt relates to both of the suggested changes.

Thanks,

Keith

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-20-2022 22:09:00] <21 Apr 2022 06:09:00 +0100>
> From: Alan Third <alan@idiocy.org>
> To: Keith David Bershatsky <esq@lawlist.com>
> Cc: emacs-devel@gnu.org, Po Lu <luangruo@yahoo.com>, Mattias Engdegård <mattiase@acm.org>, Paul Eggert <eggert@cs.ucla.edu>
> Subject: Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
> 
> On Wed, Apr 20, 2022 at 05:51:32PM -0700, Keith David Bershatsky wrote:
> > 2022-04-20 17:40:19.560 Emacs[29141:60f] An uncaught exception was raised
> > 2022-04-20 17:40:19.560 Emacs[29141:60f] *** -getRed:green:blue:alpha: not defined for the NSColor NSCustomColorSpace Device RGB colorspace 0 0 0 1; need to first convert colorspace.
> > 2022-04-20 17:40:19.561 Emacs[29141:60f] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -getRed:green:blue:alpha: not defined for the NSColor NSCustomColorSpace Device RGB colorspace 0 0 0 1; need to first convert colorspace.'
> 
> Hi Keith,
> 
> Can you please try a couple of things?
> 
> In nsterm.m, in the function colorUsingDefaultColorSpace can you
> change deviceRGBColorSpace to genericRGBColorSpace?
> 
> If that makes no difference, then in the function unsignedlong just
> below it can you try changing
> 
>     [self getRed:&r green:&g blue:&b alpha:&a];
> 
> to
> 
>     [[self colorUsingDefaultColorSpace] getRed:&r green:&g blue:&b alpha:&a];
> 
> if that makes no difference, can you try both changes together?
> 
> Thanks!
> --
> Alan Third


[-- Attachment #2: unsignedlong.txt --]
[-- Type: application/txt, Size: 31214 bytes --]

[-- Attachment #3: colorUsingDefaultColorSpace.txt --]
[-- Type: application/txt, Size: 22533 bytes --]

[-- Attachment #4: both_changes.txt --]
[-- Type: application/txt, Size: 10212 bytes --]

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-21 17:52 Keith David Bershatsky
@ 2022-04-21 19:21 ` Alan Third
  0 siblings, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-21 19:21 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

On Thu, Apr 21, 2022 at 10:52:19AM -0700, Keith David Bershatsky wrote:
> The gdb backtrace text file colorUsingDefaultColorSpace.txt relates
> to _only_ the change of deviceRGBColorSpace to genericRGBColorSpace.
> 
> The gdb backtrace text file unsignedlong.txt relates to _only_ the
> change the change of [self getRed:&r green:&g blue:&b alpha:&a]; to
> [[self colorUsingDefaultColorSpace] getRed:&r green:&g blue:&b
> alpha:&a];
> 
> The gdb backtrace text file both_changes.txt relates to both of the
> suggested changes.

OK, thanks...

Can you please try changing ns_query_color so that

  [((NSColor *)col) getRed: &r green: &g blue: &b alpha: &a];

is

  [[((NSColor *)col) colorUsingColorSpace:genericRGBColorSpace]
    getRed: &r green: &g blue: &b alpha: &a];

I'm not holding out much hope here. I can't see what change has caused
this. There's been a lot of changes to the colour handling, but afaict
the colour spaces should all be unchanged. Especially on 10.6...
-- 
Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-21 20:51 Keith David Bershatsky
  2022-04-21 22:22 ` Alan Third
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-21 20:51 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

I kept the combined two most recent changes, and I made the new change, and have the following build output:

  CC       nsterm.o
nsterm.m: In function 'ns_query_color':
nsterm.m:2125: error: 'genericRGBColorSpace' undeclared (first use in this function)
nsterm.m:2125: error: (Each undeclared identifier is reported only once
nsterm.m:2125: error: for each function it appears in.)
make[1]: *** [nsterm.o] Error 1
make: *** [src] Error 2
~/Desktop/emacs $ 

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-21-2022 12:21:37] <21 Apr 2022 20:21:37 +0100>
> From: Alan Third <alan@idiocy.org>
> To: Keith David Bershatsky <esq@lawlist.com>
> Cc: emacs-devel@gnu.org, Po Lu <luangruo@yahoo.com>, Mattias Engdegård <mattiase@acm.org>, Paul Eggert <eggert@cs.ucla.edu>
> Subject: Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
> 
> On Thu, Apr 21, 2022 at 10:52:19AM -0700, Keith David Bershatsky wrote:
> > The gdb backtrace text file colorUsingDefaultColorSpace.txt relates
> > to _only_ the change of deviceRGBColorSpace to genericRGBColorSpace.
> >
> > The gdb backtrace text file unsignedlong.txt relates to _only_ the
> > change the change of [self getRed:&r green:&g blue:&b alpha:&a]; to
> > [[self colorUsingDefaultColorSpace] getRed:&r green:&g blue:&b
> > alpha:&a];
> >
> > The gdb backtrace text file both_changes.txt relates to both of the
> > suggested changes.
> 
> OK, thanks...
> 
> Can you please try changing ns_query_color so that
> 
>   [((NSColor *)col) getRed: &r green: &g blue: &b alpha: &a];
> 
> is
> 
>   [[((NSColor *)col) colorUsingColorSpace:genericRGBColorSpace]
>     getRed: &r green: &g blue: &b alpha: &a];
> 
> I'm not holding out much hope here. I can't see what change has caused
> this. There's been a lot of changes to the colour handling, but afaict
> the colour spaces should all be unchanged. Especially on 10.6...
> --
> Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-21 20:51 Keith David Bershatsky
@ 2022-04-21 22:22 ` Alan Third
  0 siblings, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-21 22:22 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

On Thu, Apr 21, 2022 at 01:51:03PM -0700, Keith David Bershatsky wrote:
> I kept the combined two most recent changes, and I made the new change, and have the following build output:
> 
>   CC       nsterm.o
> nsterm.m: In function 'ns_query_color':
> nsterm.m:2125: error: 'genericRGBColorSpace' undeclared (first use in this function)
> nsterm.m:2125: error: (Each undeclared identifier is reported only once
> nsterm.m:2125: error: for each function it appears in.)
> make[1]: *** [nsterm.o] Error 1
> make: *** [src] Error 2
> ~/Desktop/emacs $ 

*sigh* OK, I think it should have been:

  [[((NSColor *)col) colorUsingColorSpace:[NSColorSpace genericRGBColorSpace]]
    getRed: &r green: &g blue: &b alpha: &a];

-- 
Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-21 22:40 Keith David Bershatsky
  2022-04-21 22:44 ` Alan Third
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-21 22:40 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

Here is the new backtrace with the latest revision:

(gdb) run
Starting program: /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs 
2022-04-21 15:34:00.634 Emacs[15214:60f] *** __NSAutoreleaseNoPool(): Object 0x100918460 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-21 15:34:00.637 Emacs[15214:60f] *** __NSAutoreleaseNoPool(): Object 0x10091c290 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-21 15:34:00.638 Emacs[15214:60f] *** __NSAutoreleaseNoPool(): Object 0x1009185f0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-21 15:34:00.638 Emacs[15214:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cc40 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-21 15:34:00.638 Emacs[15214:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cd30 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-21 15:34:00.638 Emacs[15214:60f] *** __NSAutoreleaseNoPool(): Object 0x10091ce90 of class NSCFData autoreleased with no pool in place - just leaking
[New Thread 0x1903 of process 15214]
[New Thread 0x1a03 of process 15214]
[New Thread 0x1b03 of process 15214]
[New Thread 0x1c03 of process 15214]
[New Thread 0x1d03 of process 15214]
2022-04-21 15:34:01.497 Emacs[15214:60f] An uncaught exception was raised
2022-04-21 15:34:01.498 Emacs[15214:60f] *** -getRed:green:blue:alpha: not defined for the NSColor NSCustomColorSpace Generic RGB colorspace 0 0 0 1; need to first convert colorspace.
2022-04-21 15:34:01.500 Emacs[15214:60f] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -getRed:green:blue:alpha: not defined for the NSColor NSCustomColorSpace Generic RGB colorspace 0 0 0 1; need to first convert colorspace.'
*** Call stack at first throw:
(
	0   CoreFoundation                      0x00007fff899577b4 __exceptionPreprocess + 180
	1   libobjc.A.dylib                     0x00007fff8012bf03 objc_exception_throw + 45
	2   CoreFoundation                      0x00007fff899575d7 +[NSException raise:format:arguments:] + 103
	3   CoreFoundation                      0x00007fff89957564 +[NSException raise:format:] + 148
	4   Emacs                               0x000000010021c885 ns_query_color + 85
	5   Emacs                               0x000000010022384c ns_defined_color + 76
	6   Emacs                               0x00000001002185c3 xpm_load_image + 2019
	7   Emacs                               0x0000000100218acf xpm_load + 127
	8   Emacs                               0x0000000100219f37 lookup_image + 695
	9   Emacs                               0x000000010021a961 Fimage_mask_p + 49
	10  Emacs                               0x000000010018c534 funcall_subr + 468
	11  Emacs                               0x00000001001d985d exec_byte_code + 11085
	12  Emacs                               0x000000010018a9b4 Ffuncall + 324
	13  Emacs                               0x00000001001947c9 mapcar1 + 425
	14  Emacs                               0x0000000100196b93 Fmapcar + 211
	15  Emacs                               0x000000010018c534 funcall_subr + 468
	16  Emacs                               0x00000001001d985d exec_byte_code + 11085
	17  Emacs                               0x000000010018f396 apply_lambda + 262
	18  Emacs                               0x0000000100189479 eval_sub + 1481
	19  Emacs                               0x000000010018f00d Feval + 61
	20  Emacs                               0x0000000100186537 internal_condition_case_1 + 103
	21  Emacs                               0x00000001000edd62 menu_item_eval_property + 82
	22  Emacs                               0x000000010010cea9 get_keyelt + 377
	23  Emacs                               0x000000010010e078 access_keymap_1 + 1800
	24  Emacs                               0x000000010010e923 access_keymap + 19
	25  Emacs                               0x00000001000f102e tool_bar_items + 478
	26  Emacs                               0x0000000100022dfc update_tool_bar + 236
	27  Emacs                               0x0000000100061474 redisplay_internal + 4404
	28  Emacs                               0x000000010010050a read_char + 4314
	29  Emacs                               0x000000010010462f read_key_sequence + 1055
	30  Emacs                               0x0000000100106557 command_loop_1 + 695
	31  Emacs                               0x00000001001865c3 internal_condition_case + 99
	32  Emacs                               0x00000001000efa66 command_loop_2 + 38
	33  Emacs                               0x0000000100186647 internal_catch + 87
	34  Emacs                               0x00000001000ef95a command_loop + 202
	35  Emacs                               0x00000001000f3e66 recursive_edit_1 + 182
	36  Emacs                               0x00000001000f4044 Frecursive_edit + 244
	37  Emacs                               0x00000001000eb515 main + 4805
	38  Emacs                               0x0000000100001534 start + 52
	39  ???                                 0x0000000000000001 0x0 + 1
)
terminate called after throwing an instance of 'NSException'

Program received signal SIGABRT, Aborted.
0x00007fff8a6120b6 in t.2065 () from /usr/lib/libSystem.B.dylib
(gdb) bt
#0  0x00007fff8a6120b6 in t.2065 () from /usr/lib/libSystem.B.dylib
#1  0x00007fff8a6b29f6 in t.2066 () from /usr/lib/libSystem.B.dylib
#2  0x00007fff838465d2 in ?? () from /usr/lib/libstdc++.6.dylib
#3  0x00007fff8012fb39 in ?? () from /usr/lib/libobjc.A.dylib
#4  0x00007fff83844ae1 in ?? () from /usr/lib/libstdc++.6.dylib
#5  0x00007fff83844b16 in ?? () from /usr/lib/libstdc++.6.dylib
#6  0x00007fff83844bfc in ?? () from /usr/lib/libstdc++.6.dylib
#7  0x00007fff8012bfa2 in ?? () from /usr/lib/libobjc.A.dylib
#8  0x00007fff899575d7 in +[NSException raise:format:arguments:] ()
   from /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
#9  0x00007fff89957564 in +[NSException raise:format:] ()
   from /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
#10 0x000000010021c885 in ns_query_color (col=0x104dacaf0, 
    color_def=0x7fff5fbfb7f0) at nsterm.m:2125
#11 0x000000010022384c in ns_defined_color (f=<optimized out>, 
    name=<optimized out>, color_def=0x7fff5fbfb7f0, alloc=<optimized out>, 
    _makeIndex=<optimized out>) at nsterm.m:2154
#12 0x00000001002185c3 in xpm_load_image (f=0x10387aa30, img=0x104da4970, 
    contents=<optimized out>, end=0x105030103 '\377' <repeats 37 times>)
    at image.c:5465
#13 0x0000000100218acf in xpm_load (f=0x10387aa30, img=0x104da4970)
    at image.c:5574
#14 0x0000000100219f37 in lookup_image (f=0x10387aa30, spec=XIL(0x1038dc033), 
    face_id=<optimized out>) at image.c:2703
#15 0x000000010021a961 in Fimage_mask_p (spec=XIL(0x1038dc033), 
    frame=<optimized out>) at image.c:1279
#16 0x000000010018c534 in funcall_subr (subr=0x10067e660, numargs=1, 
    args=0x7fff5fbfb448) at eval.c:2913
#17 0x00000001001d985d in exec_byte_code (fun=make_fixnum(3803), 
    args_template=6, nargs=0, args=0x7fff5fbfb448) at bytecode.c:809
#18 0x000000010018a9b4 in Ffuncall (nargs=<optimized out>, args=0x7fff5fbfbf30)
    at eval.c:2873
#19 0x00000001001947c9 in call1 (arg1=XIL(0), fn=<optimized out>)
    at lisp.h:3218
#20 mapcar1 (leni=14, vals=0x7fff5fbfbfb0, fn=XIL(0x102acf575), 
    seq=XIL(0x7fff5fbfb448)) at fns.c:2798
#21 0x0000000100196b93 in Fmapcar (function=XIL(0x102acf575), 
    sequence=XIL(0x1026042bb)) at fns.c:2858
#22 0x000000010018c534 in funcall_subr (subr=0x10067a2e0, numargs=2, 
    args=0x7fff5fbfb448) at eval.c:2913
#23 0x00000001001d985d in exec_byte_code (fun=make_fixnum(3803), 
    args_template=6, nargs=0, args=0x7fff5fbfb448) at bytecode.c:809
#24 0x000000010018f396 in apply_lambda (fun=XIL(0x102acf46d), 
    args=XIL(0x1038dc793), count=...) at eval.c:2982
#25 0x0000000100189479 in eval_sub (form=<optimized out>) at eval.c:2472
#26 0x000000010018f00d in Feval (form=XIL(0x1038dc7b3), 
    lexical=<optimized out>) at eval.c:2240
#27 0x0000000100186537 in internal_condition_case_1 (
    bfun=0x1000ef410 <eval_dyn>, arg=XIL(0x1038dc7b3), 
    handlers=<optimized out>, hfun=0x1000efb10 <menu_item_eval_property_1>)
    at eval.c:1474
#28 0x00000001000edd62 in menu_item_eval_property (sexpr=XIL(0x1038dc7b3))
    at keyboard.c:8021
#29 0x000000010010cea9 in get_keyelt (object=<optimized out>, autoload=true)
    at keymap.c:713
#30 0x000000010010e078 in access_keymap_1 (map=<optimized out>, 
    idx=XIL(0xdf50), t_ok=true, noinherit=false, autoload=<optimized out>)
---Type <return> to continue, or q <return> to quit---
    at keymap.c:465
#31 0x000000010010e923 in access_keymap (map=make_fixnum(3803), 
    idx=make_fixnum(1), t_ok=false, noinherit=72, autoload=96) at keymap.c:498
#32 0x00000001000f102e in tool_bar_items (reuse=<optimized out>, 
    nitems=0x7fff5fbfc58c) at keyboard.c:8803
#33 0x0000000100022dfc in update_tool_bar (f=0x10387aa30, 
    save_match_data=<optimized out>) at xdisp.c:14537
#34 0x0000000100061474 in prepare_menu_bars () at xdisp.c:13350
#35 redisplay_internal () at xdisp.c:16202
#36 0x000000010010050a in read_char (commandflag=1, map=XIL(0x1038dcf43), 
    prev_event=XIL(0), used_mouse_menu=0x7fff5fbff2ef, end_time=0x0)
    at keyboard.c:2592
#37 0x000000010010462f in read_key_sequence (keybuf=0x7fff5fbff3a0, 
    prompt=XIL(0), dont_downcase_last=false, can_return_switch_frame=true, 
    fix_current_buffer=true, prevent_redisplay=false) at keyboard.c:9932
#38 0x0000000100106557 in command_loop_1 () at keyboard.c:1401
#39 0x00000001001865c3 in internal_condition_case (
    bfun=0x1001062a0 <command_loop_1>, handlers=<optimized out>, 
    hfun=0x1000f07d0 <cmd_error>) at eval.c:1450
#40 0x00000001000efa66 in command_loop_2 (handlers=XIL(0x90))
    at keyboard.c:1142
#41 0x0000000100186647 in internal_catch (tag=<optimized out>, 
    func=0x1000efa40 <command_loop_2>, arg=XIL(0x90)) at eval.c:1180
#42 0x00000001000ef95a in command_loop () at keyboard.c:1120
#43 0x00000001000f3e66 in recursive_edit_1 () at keyboard.c:729
#44 0x00000001000f4044 in Frecursive_edit () at keyboard.c:812
#45 0x00000001000eb515 in main (argc=1, argv=0x7fff5fbff960) at emacs.c:2474
[New Thread 0x1e03 of process 15214]

Lisp Backtrace:
Cannot access memory at address 0x74b78
(gdb) 

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-21-2022 15:22:08] <21 Apr 2022 23:22:08 +0100>
> From: Alan Third <alan@idiocy.org>
> To: Keith David Bershatsky <esq@lawlist.com>
> Cc: emacs-devel@gnu.org, Po Lu <luangruo@yahoo.com>, Mattias Engdegård <mattiase@acm.org>, Paul Eggert <eggert@cs.ucla.edu>
> Subject: Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
> 
> * * *
> 
>   [[((NSColor *)col) colorUsingColorSpace:[NSColorSpace genericRGBColorSpace]]
>     getRed: &r green: &g blue: &b alpha: &a];
> 
> --
> Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-21 22:40 Keith David Bershatsky
@ 2022-04-21 22:44 ` Alan Third
  0 siblings, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-21 22:44 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

How about

  [[((NSColor *)col) colorUsingColorSpaceName:NSCalibratedRGBColorSpace]
    getRed: &r green: &g blue: &b alpha: &a];

?

I can only assume that newer macOS's treat colour spaces created by
NSColorSpace as non-custom, where 10.6 treats them as custom.

Not that this really helps. I find all this colour space stuff quite
confusing, tbh.
-- 
Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-22 21:23 Keith David Bershatsky
  0 siblings, 0 replies; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-22 21:23 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 470 bytes --]

Good news ... the recent suggested revisions permit Emacs master branch (0b9b363dabd70032a288e14333896022caa2d252) to build successfully on OSX 10.6.8 and create working version of Emacs without any immediate crashes on launch.  I only tested M-x butterfly and a dired-mode buffer, but the major hurdles appear to be resolved.  To help ensure that everyone is aware of the exact changes that led to a working version of Emacs, attached is a diff patch.

Thanks,

Keith


[-- Attachment #2: 0b9b363dabd70032a288e14333896022caa2d252.diff --]
[-- Type: application/diff, Size: 9198 bytes --]

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-22 21:29 Keith David Bershatsky
  2022-04-23 22:13 ` Alan Third
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-22 21:29 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

I observed a lot of leaking messages when building Emacs master branch on OSX 10.6.8, and the initial output of gdb is as follows.  Is this anything that needs to be addressed?

Starting program: /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs 
2022-04-22 14:24:31.450 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x100918460 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-22 14:24:31.453 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091c290 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-22 14:24:31.454 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x1009185f0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-22 14:24:31.454 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cc40 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-22 14:24:31.454 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cd30 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-22 14:24:31.455 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091ce90 of class NSCFData autoreleased with no pool in place - just leaking
[New Thread 0x1903 of process 15180]
[New Thread 0x1a03 of process 15180]
[New Thread 0x1b03 of process 15180]
[New Thread 0x1c03 of process 15180]
[New Thread 0x1d03 of process 15180]




^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-23  4:33 Keith David Bershatsky
  2022-04-23 22:04 ` Alan Third
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-23  4:33 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 628 bytes --]

I've built Emacs master branch a few times now on OSX 10.6.8 from scratch beginning from cloning the master and have concluded that the fist suggestion by Alan is sufficient to permit a successful build and working version of Emacs.

-  unsignedlong does not need any changes.

-  ns_query_color does not need any changes.

Changing colorUsingDefaultColorSpace from deviceRGBColorSpace to genericRGBColorSpace is sufficient.

I am unsure why my initial attempts at changing only colorUsingDefaultColorSpace was insufficient.  I am 99.99% certain that I did a `make clean` before doing another `make` and `make install`.

Keith


[-- Attachment #2: 0b9b363dabd70032a288e14333896022caa2d252_002.diff --]
[-- Type: application/diff, Size: 8479 bytes --]

^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-23  4:33 Keith David Bershatsky
@ 2022-04-23 22:04 ` Alan Third
  0 siblings, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-23 22:04 UTC (permalink / raw)
  To: Keith David Bershatsky; +Cc: Po Lu, Mattias Engdegård, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 834 bytes --]

On Fri, Apr 22, 2022 at 09:33:47PM -0700, Keith David Bershatsky wrote:
> I've built Emacs master branch a few times now on OSX 10.6.8 from
> scratch beginning from cloning the master and have concluded that
> the fist suggestion by Alan is sufficient to permit a successful
> build and working version of Emacs.
> 
> -  unsignedlong does not need any changes.
> 
> -  ns_query_color does not need any changes.
> 
> Changing colorUsingDefaultColorSpace from deviceRGBColorSpace to
> genericRGBColorSpace is sufficient.

OK, thanks, that's good to know.

Can you try the attached patch? I've rolled in Po Lu's changes too, so
hopefully this should deal with all the errors.

I've reinstated some code that will cause warnings, but as long as it
builds without errors and doesn't crash I prefer the easier to read
code.

-- 
Alan Third

[-- Attachment #2: v5-0001-Fix-nsmenu-compilation-under-macOS-10.6.patch --]
[-- Type: text/x-diff, Size: 8872 bytes --]

From 3dfed2f5d3bd4447ce5e405008ffe7e872d68c7e Mon Sep 17 00:00:00 2001
From: Alan Third <alan@idiocy.org>
Date: Tue, 19 Apr 2022 05:05:17 +0100
Subject: [PATCH v5] Fix nsmenu compilation under macOS 10.6

* src/nsmenu.m ([EmacsMenu fillWithWidgetValue:]): Replace modern
shorthand dictionary and array definitions.
* src/nsterm.h (NSTextAlignmentRight): Redefine if necessary.
* src/macfont.m (mac_font_create_preferred_family_for_attributes):
isOperatingSystemAtLeastVersion is new in macOS 10.10, so it's
probably wrong to use it to check whether we're below 10.9.
(mac_font_copy_default_descriptors_for_language):
(mac_font_copy_default_name_for_charset_and_languages): It seems these
functions are only used on macOS 10.8 and below.
* src/nsterm.m ([NSColor colorUsingDefaultColorSpace]): Use the
generic colorspace.
(ns_parent_window_rect):
(ns_frame_scale_factor):
([EmacsWindow setParentChildRelationships]): Fix macOS version stuff.

Co-authored-by: Po Lu <luangruo@yahoo.com>
---
 src/macfont.m | 15 +++++++++------
 src/nsmenu.m  | 10 ++++++----
 src/nsterm.h  |  1 +
 src/nsterm.m  | 35 ++++++++++++++++++++++++-----------
 4 files changed, 40 insertions(+), 21 deletions(-)

diff --git a/src/macfont.m b/src/macfont.m
index 34e48afb98..35648df06c 100644
--- a/src/macfont.m
+++ b/src/macfont.m
@@ -57,8 +57,10 @@ static Boolean mac_font_descriptor_supports_languages (CTFontDescriptorRef,
 static CFIndex mac_font_shape (CTFontRef, CFStringRef,
 			       struct mac_glyph_layout *, CFIndex,
 			       enum lgstring_direction);
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1090
 static CFArrayRef mac_font_copy_default_descriptors_for_language (CFStringRef);
 static CFStringRef mac_font_copy_default_name_for_charset_and_languages (CFCharacterSetRef, CFArrayRef);
+#endif
 #if USE_CT_GLYPH_INFO
 static CGGlyph mac_ctfont_get_glyph_for_cid (CTFontRef, CTCharacterCollection,
                                              CGFontIndex);
@@ -3570,18 +3572,17 @@ So we use CTFontDescriptorCreateMatchingFontDescriptor (no
 
       if (languages && CFArrayGetCount (languages) > 0)
         {
-          if ([[NSProcessInfo processInfo]
-                isOperatingSystemAtLeastVersion:
-                  ((NSOperatingSystemVersion){
-                    .majorVersion = 10, .minorVersion = 9})])
-            values[num_values++] = CFArrayGetValueAtIndex (languages, 0);
-          else
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1090
+          if (CTGetCoreTextVersion () < kCTVersionNumber10_9)
             {
               CFCharacterSetRef charset =
                 CFDictionaryGetValue (attributes, kCTFontCharacterSetAttribute);
 
               result = mac_font_copy_default_name_for_charset_and_languages (charset, languages);
             }
+          else
+#endif
+            values[num_values++] = CFArrayGetValueAtIndex (languages, 0);
         }
       if (result == NULL)
         {
@@ -4000,6 +4001,7 @@ So we use CTFontDescriptorCreateMatchingFontDescriptor (no
 }
 #endif
 
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1090
 static CFArrayRef
 mac_font_copy_default_descriptors_for_language (CFStringRef language)
 {
@@ -4134,6 +4136,7 @@ So we use CTFontDescriptorCreateMatchingFontDescriptor (no
 
   return result;
 }
+#endif
 
 void *
 macfont_get_nsctfont (struct font *font)
diff --git a/src/nsmenu.m b/src/nsmenu.m
index 81d7cd2da1..0f7d1fb98f 100644
--- a/src/nsmenu.m
+++ b/src/nsmenu.m
@@ -649,7 +649,8 @@ - (void)fillWithWidgetValue: (void *)wvptr
      work around it by using tabs to split the title into two
      columns.  */
   NSFont *menuFont = [NSFont menuFontOfSize:0];
-  NSDictionary *font_attribs = @{NSFontAttributeName: menuFont};
+  NSDictionary *font_attribs = [NSDictionary dictionaryWithObjectsAndKeys:
+                                               menuFont, NSFontAttributeName, nil];
   CGFloat maxNameWidth = 0;
   CGFloat maxKeyWidth = 0;
 
@@ -677,11 +678,12 @@ - (void)fillWithWidgetValue: (void *)wvptr
   NSTextTab *tab =
     [[[NSTextTab alloc] initWithTextAlignment: NSTextAlignmentRight
                                      location: maxWidth
-                                      options: @{}] autorelease];
+                                      options: [NSDictionary dictionary]] autorelease];
   NSMutableParagraphStyle *pstyle = [[[NSMutableParagraphStyle alloc] init]
                                       autorelease];
-  [pstyle setTabStops: @[tab]];
-  attributes = @{NSParagraphStyleAttributeName: pstyle};
+  [pstyle setTabStops: [NSArray arrayWithObject:tab]];
+  attributes = [NSDictionary dictionaryWithObjectsAndKeys:
+                               pstyle, NSParagraphStyleAttributeName, nil];
 #endif
 
   /* clear existing contents */
diff --git a/src/nsterm.h b/src/nsterm.h
index 4cba5c0be8..5b121ede98 100644
--- a/src/nsterm.h
+++ b/src/nsterm.h
@@ -1290,6 +1290,7 @@ #define NSWindowStyleMaskUtilityWindow     NSUtilityWindowMask
 #define NSAlertStyleCritical               NSCriticalAlertStyle
 #define NSControlSizeRegular               NSRegularControlSize
 #define NSCompositingOperationCopy         NSCompositeCopy
+#define NSTextAlignmentRight               NSRightTextAlignment
 
 /* And adds NSWindowStyleMask.  */
 #ifdef __OBJC__
diff --git a/src/nsterm.m b/src/nsterm.m
index 5a6a4d663b..e5d8af9af0 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -163,7 +163,7 @@ - (NSColor *)colorUsingDefaultColorSpace
       && NSAppKitVersionNumber >= NSAppKitVersionNumber10_7)
     return [self colorUsingColorSpace: [NSColorSpace sRGBColorSpace]];
 #endif
-  return [self colorUsingColorSpace: [NSColorSpace deviceRGBColorSpace]];
+  return [self colorUsingColorSpace: [NSColorSpace genericRGBColorSpace]];
 }
 
 + (NSColor *)colorWithUnsignedLong:(unsigned long)c
@@ -751,7 +751,14 @@ Free a pool and temporary objects it refers to (callable from C)
       EmacsView *parentView = FRAME_NS_VIEW (FRAME_PARENT_FRAME (f));
       parentRect = [parentView convertRect:[parentView frame]
                                     toView:nil];
-      parentRect = [[parentView window] convertRectToScreen:parentRect];
+
+#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+      if (![[parentView window]
+             respondsToSelector:@selector(convertRectToScreen:)])
+        parentRect.origin = [[parentView window] convertBaseToScreen:parentRect.origin];
+      else
+#endif
+        parentRect = (NSRect)[[parentView window] convertRectToScreen:parentRect];
     }
   else
     parentRect = [[[NSScreen screens] objectAtIndex:0] frame];
@@ -788,8 +795,14 @@ Free a pool and temporary objects it refers to (callable from C)
 double
 ns_frame_scale_factor (struct frame *f)
 {
-#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED > 1060
-  return [[FRAME_NS_VIEW (f) window] backingScaleFactor];
+#if defined (NS_IMPL_COCOA)
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+  if (! [[FRAME_NS_VIEW (f) window]
+          respondsToSelector:@selector(convertRectToScreen:)])
+    return [[FRAME_NS_VIEW (f) window] userSpaceScaleFactor];
+  else
+#endif
+    return (double)[[FRAME_NS_VIEW (f) window] backingScaleFactor];
 #else
   return [[FRAME_NS_VIEW (f) window] userSpaceScaleFactor];
 #endif
@@ -6942,7 +6955,7 @@ - (void)otherMouseDragged: (NSEvent *)e
   [self mouseMoved: e];
 }
 
-#ifdef NS_IMPL_COCOA
+#if defined NS_IMPL_COCOA && defined MAC_OS_X_VERSION_10_7
 - (void) magnifyWithEvent: (NSEvent *) event
 {
   NSPoint pt = [self convertPoint: [event locationInWindow] fromView: nil];
@@ -8525,7 +8538,7 @@ - (void)setParentChildRelationships
      expected later.  */
 
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 101000
-  if ([child respondsToSelector:@selector(setAccessibilitySubrole:)])
+  if ([self respondsToSelector:@selector(setAccessibilitySubrole:)])
 #endif
     /* Set the accessibility subroles.  */
     if (parentFrame)
@@ -8557,7 +8570,7 @@ - (void)setParentChildRelationships
 
 #ifdef NS_IMPL_COCOA
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
-      if ([ourView respondsToSelector:@selector (toggleFullScreen)]
+      if ([ourView respondsToSelector:@selector (toggleFullScreen)])
 #endif
           /* If we are the descendent of a fullscreen window and we
              have no new parent, go fullscreen.  */
@@ -8582,11 +8595,11 @@ - (void)setParentChildRelationships
 
 #ifdef NS_IMPL_COCOA
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
-      if ([ourView respondsToSelector:@selector (toggleFullScreen)]
+      if ([ourView respondsToSelector:@selector (toggleFullScreen)])
 #endif
-          /* Child frames must not be fullscreen.  */
-          if ([ourView fsIsNative] && [ourView isFullscreen])
-            [ourView toggleFullScreen:self];
+	/* Child frames must not be fullscreen.  */
+	if ([ourView fsIsNative] && [ourView isFullscreen])
+	  [ourView toggleFullScreen:self];
 #endif
 
       [parentWindow addChildWindow:self
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-22 21:29 Keith David Bershatsky
@ 2022-04-23 22:13 ` Alan Third
  0 siblings, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-23 22:13 UTC (permalink / raw)
  To: Keith David Bershatsky; +Cc: Po Lu, Mattias Engdegård, emacs-devel

On Fri, Apr 22, 2022 at 02:29:34PM -0700, Keith David Bershatsky wrote:
> I observed a lot of leaking messages when building Emacs master branch on OSX 10.6.8, and the initial output of gdb is as follows.  Is this anything that needs to be addressed?
> 
> Starting program: /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs 
> 2022-04-22 14:24:31.450 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x100918460 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-22 14:24:31.453 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091c290 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-22 14:24:31.454 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x1009185f0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-22 14:24:31.454 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cc40 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-22 14:24:31.454 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cd30 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-22 14:24:31.455 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091ce90 of class NSCFData autoreleased with no pool in place - just leaking

To be honest, I'm unsure as I don't know where in the code those leaks
are occurring. I guess it's maybe possible to put a breakpoint on
__NSAutoreleaseNoPool and then get a backtrace when it's caught, but I
don't see these messages here so I suspect you'd have to do that work.

Do the messages continue as you use Emacs or are they just at startup?
-- 
Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-24  0:08 Keith David Bershatsky
  2022-04-24  9:03 ` Alan Third
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-24  0:08 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

Here is the build output using the latest patch "v5-0001..."

  CC       nsterm.o
nsterm.m: In function 'ns_parent_window_rect':
nsterm.m:761: warning: 'NSWindow' may not respond to '-convertRectToScreen:'
nsterm.m:761: warning: (Messages without a matching method signature
nsterm.m:761: warning: will be assumed to return 'id' and accept
nsterm.m:761: warning: '...' as arguments.)
nsterm.m:761: error: conversion to non-scalar type requested
nsterm.m: In function 'ns_frame_scale_factor':
nsterm.m:805: warning: 'NSWindow' may not respond to '-backingScaleFactor'
nsterm.m:805: error: pointer value used where a floating point value was expected
nsterm.m: In function '-[EmacsWindow initWithEmacsFrame:fullscreen:screen:]':
nsterm.m:8472: warning: 'EmacsWindow' may not respond to '-setTabbingMode:'
nsterm.m: In function '-[EmacsWindow setParentChildRelationships]':
nsterm.m:8545: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
nsterm.m:8547: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
make[1]: *** [nsterm.o] Error 1
make: *** [src] Error 2
~/Desktop/emacs $ 

Thanks,

Keith



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-24  0:08 Keith David Bershatsky
@ 2022-04-24  9:03 ` Alan Third
  0 siblings, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-24  9:03 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

[-- Attachment #1: Type: text/plain, Size: 1336 bytes --]

On Sat, Apr 23, 2022 at 05:08:28PM -0700, Keith David Bershatsky wrote:
> Here is the build output using the latest patch "v5-0001..."
> 
>   CC       nsterm.o
> nsterm.m: In function 'ns_parent_window_rect':
> nsterm.m:761: warning: 'NSWindow' may not respond to '-convertRectToScreen:'
> nsterm.m:761: warning: (Messages without a matching method signature
> nsterm.m:761: warning: will be assumed to return 'id' and accept
> nsterm.m:761: warning: '...' as arguments.)
> nsterm.m:761: error: conversion to non-scalar type requested
> nsterm.m: In function 'ns_frame_scale_factor':
> nsterm.m:805: warning: 'NSWindow' may not respond to '-backingScaleFactor'
> nsterm.m:805: error: pointer value used where a floating point value was expected
> nsterm.m: In function '-[EmacsWindow initWithEmacsFrame:fullscreen:screen:]':
> nsterm.m:8472: warning: 'EmacsWindow' may not respond to '-setTabbingMode:'
> nsterm.m: In function '-[EmacsWindow setParentChildRelationships]':
> nsterm.m:8545: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
> nsterm.m:8547: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
> make[1]: *** [nsterm.o] Error 1
> make: *** [src] Error 2
> ~/Desktop/emacs $ 

*sigh* I thought that would work, but you live and learn.

This one should work. I hope. :)
-- 
Alan Third

[-- Attachment #2: v6-0001-Fix-nsmenu-compilation-under-macOS-10.6.patch --]
[-- Type: text/x-diff, Size: 9126 bytes --]

From dcfae2be07610a40c94a164c7518c0fdd7ffa37b Mon Sep 17 00:00:00 2001
From: Alan Third <alan@idiocy.org>
Date: Tue, 19 Apr 2022 05:05:17 +0100
Subject: [PATCH v6] Fix nsmenu compilation under macOS 10.6

* src/nsmenu.m ([EmacsMenu fillWithWidgetValue:]): Replace modern
shorthand dictionary and array definitions.
* src/nsterm.h (NSTextAlignmentRight): Redefine if necessary.
* src/macfont.m (mac_font_create_preferred_family_for_attributes):
isOperatingSystemAtLeastVersion is new in macOS 10.10, so it's
probably wrong to use it to check whether we're below 10.9.
(mac_font_copy_default_descriptors_for_language):
(mac_font_copy_default_name_for_charset_and_languages): It seems these
functions are only used on macOS 10.8 and below.
* src/nsterm.m ([NSColor colorUsingDefaultColorSpace]): Use the
generic colorspace.
(ns_parent_window_rect):
(ns_frame_scale_factor):
([EmacsWindow setParentChildRelationships]): Fix macOS version stuff.

Co-authored-by: Po Lu <luangruo@yahoo.com>
---
 src/macfont.m | 15 +++++++++------
 src/nsmenu.m  | 10 ++++++----
 src/nsterm.h  |  1 +
 src/nsterm.m  | 39 ++++++++++++++++++++++++++++-----------
 4 files changed, 44 insertions(+), 21 deletions(-)

diff --git a/src/macfont.m b/src/macfont.m
index 34e48afb98..35648df06c 100644
--- a/src/macfont.m
+++ b/src/macfont.m
@@ -57,8 +57,10 @@ static Boolean mac_font_descriptor_supports_languages (CTFontDescriptorRef,
 static CFIndex mac_font_shape (CTFontRef, CFStringRef,
 			       struct mac_glyph_layout *, CFIndex,
 			       enum lgstring_direction);
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1090
 static CFArrayRef mac_font_copy_default_descriptors_for_language (CFStringRef);
 static CFStringRef mac_font_copy_default_name_for_charset_and_languages (CFCharacterSetRef, CFArrayRef);
+#endif
 #if USE_CT_GLYPH_INFO
 static CGGlyph mac_ctfont_get_glyph_for_cid (CTFontRef, CTCharacterCollection,
                                              CGFontIndex);
@@ -3570,18 +3572,17 @@ So we use CTFontDescriptorCreateMatchingFontDescriptor (no
 
       if (languages && CFArrayGetCount (languages) > 0)
         {
-          if ([[NSProcessInfo processInfo]
-                isOperatingSystemAtLeastVersion:
-                  ((NSOperatingSystemVersion){
-                    .majorVersion = 10, .minorVersion = 9})])
-            values[num_values++] = CFArrayGetValueAtIndex (languages, 0);
-          else
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1090
+          if (CTGetCoreTextVersion () < kCTVersionNumber10_9)
             {
               CFCharacterSetRef charset =
                 CFDictionaryGetValue (attributes, kCTFontCharacterSetAttribute);
 
               result = mac_font_copy_default_name_for_charset_and_languages (charset, languages);
             }
+          else
+#endif
+            values[num_values++] = CFArrayGetValueAtIndex (languages, 0);
         }
       if (result == NULL)
         {
@@ -4000,6 +4001,7 @@ So we use CTFontDescriptorCreateMatchingFontDescriptor (no
 }
 #endif
 
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1090
 static CFArrayRef
 mac_font_copy_default_descriptors_for_language (CFStringRef language)
 {
@@ -4134,6 +4136,7 @@ So we use CTFontDescriptorCreateMatchingFontDescriptor (no
 
   return result;
 }
+#endif
 
 void *
 macfont_get_nsctfont (struct font *font)
diff --git a/src/nsmenu.m b/src/nsmenu.m
index 81d7cd2da1..0f7d1fb98f 100644
--- a/src/nsmenu.m
+++ b/src/nsmenu.m
@@ -649,7 +649,8 @@ - (void)fillWithWidgetValue: (void *)wvptr
      work around it by using tabs to split the title into two
      columns.  */
   NSFont *menuFont = [NSFont menuFontOfSize:0];
-  NSDictionary *font_attribs = @{NSFontAttributeName: menuFont};
+  NSDictionary *font_attribs = [NSDictionary dictionaryWithObjectsAndKeys:
+                                               menuFont, NSFontAttributeName, nil];
   CGFloat maxNameWidth = 0;
   CGFloat maxKeyWidth = 0;
 
@@ -677,11 +678,12 @@ - (void)fillWithWidgetValue: (void *)wvptr
   NSTextTab *tab =
     [[[NSTextTab alloc] initWithTextAlignment: NSTextAlignmentRight
                                      location: maxWidth
-                                      options: @{}] autorelease];
+                                      options: [NSDictionary dictionary]] autorelease];
   NSMutableParagraphStyle *pstyle = [[[NSMutableParagraphStyle alloc] init]
                                       autorelease];
-  [pstyle setTabStops: @[tab]];
-  attributes = @{NSParagraphStyleAttributeName: pstyle};
+  [pstyle setTabStops: [NSArray arrayWithObject:tab]];
+  attributes = [NSDictionary dictionaryWithObjectsAndKeys:
+                               pstyle, NSParagraphStyleAttributeName, nil];
 #endif
 
   /* clear existing contents */
diff --git a/src/nsterm.h b/src/nsterm.h
index 4cba5c0be8..5b121ede98 100644
--- a/src/nsterm.h
+++ b/src/nsterm.h
@@ -1290,6 +1290,7 @@ #define NSWindowStyleMaskUtilityWindow     NSUtilityWindowMask
 #define NSAlertStyleCritical               NSCriticalAlertStyle
 #define NSControlSizeRegular               NSRegularControlSize
 #define NSCompositingOperationCopy         NSCompositeCopy
+#define NSTextAlignmentRight               NSRightTextAlignment
 
 /* And adds NSWindowStyleMask.  */
 #ifdef __OBJC__
diff --git a/src/nsterm.m b/src/nsterm.m
index 5a6a4d663b..3c94f69e79 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -163,7 +163,7 @@ - (NSColor *)colorUsingDefaultColorSpace
       && NSAppKitVersionNumber >= NSAppKitVersionNumber10_7)
     return [self colorUsingColorSpace: [NSColorSpace sRGBColorSpace]];
 #endif
-  return [self colorUsingColorSpace: [NSColorSpace deviceRGBColorSpace]];
+  return [self colorUsingColorSpace: [NSColorSpace genericRGBColorSpace]];
 }
 
 + (NSColor *)colorWithUnsignedLong:(unsigned long)c
@@ -751,7 +751,18 @@ Free a pool and temporary objects it refers to (callable from C)
       EmacsView *parentView = FRAME_NS_VIEW (FRAME_PARENT_FRAME (f));
       parentRect = [parentView convertRect:[parentView frame]
                                     toView:nil];
+
+#if defined (NS_IMPL_COCOA) && !defined (MAC_OS_X_VERSION_10_7)
+      parentRect.origin = [[parentView window] convertBaseToScreen:parentRect.origin];
+#elsif defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+      if ([[parentView window]
+             respondsToSelector:@selector(convertRectToScreen:)])
+        parentRect = [[parentView window] convertRectToScreen:parentRect];
+      else
+        parentRect.origin = [[parentView window] convertBaseToScreen:parentRect.origin];
+#else
       parentRect = [[parentView window] convertRectToScreen:parentRect];
+#endif
     }
   else
     parentRect = [[[NSScreen screens] objectAtIndex:0] frame];
@@ -788,10 +799,16 @@ Free a pool and temporary objects it refers to (callable from C)
 double
 ns_frame_scale_factor (struct frame *f)
 {
-#if defined (NS_IMPL_COCOA) && MAC_OS_X_VERSION_MAX_ALLOWED > 1060
-  return [[FRAME_NS_VIEW (f) window] backingScaleFactor];
-#else
+#if defined (NS_IMPL_GNUSTEP) || !defined (MAC_OS_X_VERSION_10_7)
   return [[FRAME_NS_VIEW (f) window] userSpaceScaleFactor];
+#elsif MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+  if ([[FRAME_NS_VIEW (f) window]
+            respondsToSelector:@selector(backingScaleFactor:)])
+    return [[FRAME_NS_VIEW (f) window] backingScaleFactor];
+  else
+    return [[FRAME_NS_VIEW (f) window] userSpaceScaleFactor];
+#else
+  return [[FRAME_NS_VIEW (f) window] backingScaleFactor];
 #endif
 }
 
@@ -6942,7 +6959,7 @@ - (void)otherMouseDragged: (NSEvent *)e
   [self mouseMoved: e];
 }
 
-#ifdef NS_IMPL_COCOA
+#if defined NS_IMPL_COCOA && defined MAC_OS_X_VERSION_10_7
 - (void) magnifyWithEvent: (NSEvent *) event
 {
   NSPoint pt = [self convertPoint: [event locationInWindow] fromView: nil];
@@ -8525,7 +8542,7 @@ - (void)setParentChildRelationships
      expected later.  */
 
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 101000
-  if ([child respondsToSelector:@selector(setAccessibilitySubrole:)])
+  if ([self respondsToSelector:@selector(setAccessibilitySubrole:)])
 #endif
     /* Set the accessibility subroles.  */
     if (parentFrame)
@@ -8557,7 +8574,7 @@ - (void)setParentChildRelationships
 
 #ifdef NS_IMPL_COCOA
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
-      if ([ourView respondsToSelector:@selector (toggleFullScreen)]
+      if ([ourView respondsToSelector:@selector (toggleFullScreen)])
 #endif
           /* If we are the descendent of a fullscreen window and we
              have no new parent, go fullscreen.  */
@@ -8582,11 +8599,11 @@ - (void)setParentChildRelationships
 
 #ifdef NS_IMPL_COCOA
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 1070
-      if ([ourView respondsToSelector:@selector (toggleFullScreen)]
+      if ([ourView respondsToSelector:@selector (toggleFullScreen)])
 #endif
-          /* Child frames must not be fullscreen.  */
-          if ([ourView fsIsNative] && [ourView isFullscreen])
-            [ourView toggleFullScreen:self];
+	/* Child frames must not be fullscreen.  */
+	if ([ourView fsIsNative] && [ourView isFullscreen])
+	  [ourView toggleFullScreen:self];
 #endif
 
       [parentWindow addChildWindow:self
-- 
2.35.1


^ permalink raw reply related	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-24 17:02 Keith David Bershatsky
  2022-04-24 19:22 ` Alan Third
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-24 17:02 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

Here is the build output of:  v6-0001-Fix-nsmenu-compilation-under-macOS-10.6.patch

  CC       nsterm.o
nsterm.m:757:2: error: invalid preprocessing directive #elsif
nsterm.m: In function 'ns_parent_window_rect':
nsterm.m:760: warning: 'NSWindow' may not respond to '-convertRectToScreen:'
nsterm.m:760: warning: (Messages without a matching method signature
nsterm.m:760: warning: will be assumed to return 'id' and accept
nsterm.m:760: warning: '...' as arguments.)
nsterm.m:760: error: incompatible types in assignment
nsterm.m:804:2: error: invalid preprocessing directive #elsif
nsterm.m: In function 'ns_frame_scale_factor':
nsterm.m:807: warning: 'NSWindow' may not respond to '-backingScaleFactor'
nsterm.m:807: error: incompatible types in return
nsterm.m: In function '-[EmacsWindow initWithEmacsFrame:fullscreen:screen:]':
nsterm.m:8476: warning: 'EmacsWindow' may not respond to '-setTabbingMode:'
nsterm.m: In function '-[EmacsWindow setParentChildRelationships]':
nsterm.m:8549: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
nsterm.m:8551: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
make[1]: *** [nsterm.o] Error 1
make: *** [src] Error 2

Thanks,

Keith



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-24 17:02 Keith David Bershatsky
@ 2022-04-24 19:22 ` Alan Third
  0 siblings, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-24 19:22 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

On Sun, Apr 24, 2022 at 10:02:36AM -0700, Keith David Bershatsky wrote:
> nsterm.m:757:2: error: invalid preprocessing directive #elsif

I'm an idiot apparently.

Keith, can you replace all occurrences of "#elsif" with "#elif"? There
should only be two.
-- 
Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-25  1:35 Keith David Bershatsky
  2022-04-25 18:08 ` Alan Third
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-25  1:35 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

Yes, that change permitted the build to succeed and it creates a working version of Emacs.

Thanks,

Keith

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-24-2022 12:22:28] <24 Apr 2022 20:22:28 +0100>
> From: Alan Third <alan@idiocy.org>
> 
> * * *
> 
> Keith, can you replace all occurrences of "#elsif" with "#elif"? There
> should only be two.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-25  1:49 Keith David Bershatsky
  2022-04-25  3:09 ` Po Lu
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-25  1:49 UTC (permalink / raw)
  To: Alan Third; +Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

The "just leaking" messages appear (1) when building Emacs and (2) when Emacs starts up running under gdb.  Once Emacs has started when running under gdb, I have not observed additional "just leaking" messages.  I have only used Emacs master branch very lightly on OSX 10.6.8; e.g., opening source code files, movement / navigation, M-x butterfly.  Debugging a memory leak is beyond my current level of Emacs-Fu.  Here is an excerpt from the build:

rm -f emacs && cp -f temacs emacs
LC_ALL=C ./temacs -batch  -l loadup --temacs=pdump \
		--bin-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/ --eln-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Frameworks/
2022-04-24 17:05:19.291 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100916490 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.293 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091a1a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.293 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009165a0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.294 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009096e0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.294 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009097d0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.294 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909850 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.321 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909880 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.321 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009098c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.321 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009099d0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.321 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909b10 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.322 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909a00 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.322 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909a80 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.401 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909ac0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.402 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b030 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.402 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009099a0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.402 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091afb0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.402 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b140 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.403 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b0c0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.486 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b0f0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.487 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b1d0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.487 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b6b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.487 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b7a0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.487 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b710 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.488 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091d920 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.488 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091d950 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.569 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091d990 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.572 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103002770 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.573 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030045c0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.573 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103009160 of class NSCFData autoreleased with no pool in place - just leaking
Loading loadup.el (source)...
Dump mode: pdump

* * *

Loading term/common-win...
2022-04-24 17:05:22.531 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d040 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.532 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1cf0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.532 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10480a2d0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.532 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d0f0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.533 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d120 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.533 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff9390 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.535 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff2a10 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.535 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fed2b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.535 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900000 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.536 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900050 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.536 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900150 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.536 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049001a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.536 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900220 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.604 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048104d0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.605 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d070 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.605 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104810580 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.605 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff704f9228 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.606 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff704f9228 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.606 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104814c40 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.703 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00230 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.704 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00670 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.704 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00750 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.705 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00790 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.705 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00790 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.705 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103457c00 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.705 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346cf30 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.803 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b8a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.803 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00090 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.804 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00790 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.804 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900290 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.804 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049002c0 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.805 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049003b0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.886 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00360 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.886 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900450 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.886 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049003f0 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.887 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900490 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.887 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900300 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.887 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049004c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.968 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049004c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.968 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049006b0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.968 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900810 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.968 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900880 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.969 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900580 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.969 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900a20 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.969 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00250 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.069 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049004c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.069 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a003a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.069 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00570 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.070 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00570 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.070 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048290b0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.070 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a006c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.170 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00730 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.170 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00610 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.170 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00650 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.171 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a008f0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.171 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00570 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.171 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a009c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.259 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900a80 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.259 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900a80 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.259 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e670 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458560 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034171e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034171b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346edb0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.341 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b006d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.342 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091d320 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.342 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00720 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.343 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b008d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.343 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b009e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.343 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00b90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.426 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909cf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.427 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100916750 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.427 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103468cd0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.427 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475f70 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.428 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346ed60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.428 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345a8e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.508 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091a0e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.509 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091c6d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.509 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091c8b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.509 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e620 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.510 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100903970 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.510 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345a940 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.592 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909de0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.592 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909e30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.592 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00bc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.593 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00960 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.593 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00bf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.593 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00d00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.675 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091dbe0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.676 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909220 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.676 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00e30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.676 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00c60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.677 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345a910 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.677 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00c90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.759 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909250 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00f20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00f50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01040 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01090 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00310 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.843 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00ab0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.843 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00b00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00b50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00ba0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103466130 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.845 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b010e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.922 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a060 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a0b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300d850 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.924 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300e700 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.924 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103016ef0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:23.924 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013430 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.006 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103015fa0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090ada0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103012bf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300c3d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030266e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030211e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.095 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00bf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.095 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900700 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103014d80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301cc20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103025710 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.097 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301f0c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.180 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00810 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.181 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00860 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.182 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00f80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.182 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00fb0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.182 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01110 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.182 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01140 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034660d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103466100 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345e080 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345e0b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345e0e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464260 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090adf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e5c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e5f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090ad00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090ad50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.348 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090acd0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.429 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e4c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.429 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090ab90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464290 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103471700 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00c40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01330 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.514 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b011b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.515 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345ac40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.515 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b011e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.515 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01380 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.515 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01230 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.516 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300acb0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.516 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103012570 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.594 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345ac70 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.595 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345aca0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.595 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00420 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c008d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00920 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00970 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.678 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104829110 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.678 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104814c90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.679 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103471730 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.679 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103471760 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.679 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034604a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.679 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034604d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e540 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00a30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00b40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.762 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b013d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.762 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01400 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.762 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103450fe0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.839 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e4f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.839 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091c7d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.840 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091c820 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.840 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090abc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.840 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090abf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.840 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090ac40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.922 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103451040 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034710a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034710d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103471100 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.924 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345ae20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:24.924 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345ae50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a100 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a130 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a180 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a1d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a220 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909310 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.092 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300cd90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.092 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030224b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.093 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b012e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.093 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01450 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.093 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01280 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.093 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01910 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.177 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909360 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.178 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009093b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300f3d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01960 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103017740 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.180 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030127b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.263 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009094b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909670 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909620 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e420 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009094e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009095d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909400 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909450 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091f440 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091f490 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091f530 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00af0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091f580 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091ca00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.431 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103452ce0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.431 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00c90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.431 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00ce0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.432 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c009a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.513 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c003a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.513 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c009d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.514 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104814cc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.514 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049007d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.514 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900aa0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.515 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00ae0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900af0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104814cf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900b20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.597 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049010d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.597 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00b10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.597 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901100 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.680 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00d30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.681 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00d80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.681 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00ac0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.681 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00d30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.682 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00d80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.682 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01990 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.759 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cb50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030113f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b019c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01a10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103452cb0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345ae80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.843 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301e370 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.843 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00e60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01af0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01c00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01c30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01c80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.921 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10343ba20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.922 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103452d10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.922 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103459d10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103002740 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103000490 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103018410 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:25.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103022ef0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100912e60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100915dc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100916050 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.009 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009197a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.009 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100916520 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.009 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100913300 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345c930 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.097 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104d00000 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.097 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00dd0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.098 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104e00000 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.098 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00e20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.099 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00e20 of class __NSFastEnumerationEnumerator autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.178 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00f80 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00a00 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104814d20 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815fc0 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.180 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104807180 of class __NSArrayReverseEnumerator autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.180 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048169e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.263 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00a60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c01200 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c01430 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c02c70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900ba0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c02e50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00fc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034760b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346ce80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a01010 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a01060 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.348 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c02ea0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.348 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c02f00 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.435 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a010d0 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.436 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff13b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.436 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff6430 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.437 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c03450 of class NSDeviceRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.437 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff8150 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.437 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fecf10 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.535 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff25f0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.537 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a056d0 of class NSCustomReleaseData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.537 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a03e00 of class NSBitmapImageRep autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.537 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a06a60 of class NSImage autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.538 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a03e70 of class __NSArray0 autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.538 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07120 of class NSGradientPatternColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.624 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffbc30 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.625 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fef7b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.626 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07440 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.627 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07b70 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.627 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07bb0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.627 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07c10 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.627 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07e40 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.719 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffbc30 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.719 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07c80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.720 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff3130 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.720 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fefcd0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.720 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818060 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.720 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818520 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.818 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a074f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.818 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffab10 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.818 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900b70 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.819 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900110 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.819 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fede90 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.819 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901190 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.919 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07570 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.920 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1eb0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.921 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff7010 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.921 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fed730 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.921 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fedb30 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:26.921 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fee3d0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.013 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff4710 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.014 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1d90 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.014 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffbb50 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.015 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c08b60 of class NSColorSpaceColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.015 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fee990 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.015 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff8b30 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.016 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fee810 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.094 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fed4f0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.095 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fefdb0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.095 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff02f0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a076a0 of class NSMenuItemHighlightColor autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff48b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fece70 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffae30 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff9e70 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff42b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fedeb0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901720 of class __NSArrayReverseEnumerator autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.195 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a073a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901b90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07400 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d160 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901be0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901c40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901c90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901cf0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901d50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902240 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049022a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902300 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01b40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01cb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.452 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01d10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.452 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01d60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.453 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01db0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.453 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901db0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.453 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07460 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.454 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a071a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.454 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a077f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.542 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07840 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.542 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a078a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.543 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a078f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.543 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c03870 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.543 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345c960 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.544 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030116b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.636 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103459800 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.636 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c08750 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.636 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c087b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.637 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902360 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.637 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475ff0 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.640 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090d790 of class __NSArrayReverseEnumerator autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.725 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103002eb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.726 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103025c40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.726 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103001dc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.726 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103026650 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.727 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301c200 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.727 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346cbd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.727 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103459880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.834 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009166b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.835 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100905d80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.835 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cb80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.835 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cbd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.835 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cc20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.836 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cc70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.836 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091ccc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.952 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034765f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.953 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103476640 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.953 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103468380 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.953 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034683d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.954 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345e140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:27.954 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345e190 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.052 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cd10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.053 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cd60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.053 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092d9a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.053 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092d9f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.053 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092da40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.054 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092da90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.054 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dae0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.146 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092db30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.146 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092db80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.146 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dbd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.146 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dc20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.147 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dc70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.147 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dcc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.235 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01480 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.236 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b014d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.236 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01520 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.237 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01570 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.237 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b015c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.237 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01610 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.237 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01660 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.329 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b016b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.329 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.330 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01750 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.330 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b017a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.330 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b017f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.330 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01840 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.418 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01890 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.419 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02200 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.419 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02250 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.419 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b022a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.420 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b022f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.420 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02340 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.420 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02390 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.518 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dd10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.519 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dd60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.519 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ddb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.519 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092de00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.520 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092de50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.520 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dea0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.619 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103014de0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.619 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103018380 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.619 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300d0c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.620 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030204a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.620 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103011f70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.620 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301f030 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.620 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300df50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.709 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00cf0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.709 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c02f70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.710 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c03ba0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.710 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816150 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.710 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048179e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.711 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301d9f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.796 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301a4c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.797 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300d1b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.797 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103016da0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.797 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301f2f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.797 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301d440 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.798 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103011dd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.798 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300fde0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.891 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01a60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.891 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b023e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.892 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103014080 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.892 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301b9e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.892 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301c150 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.893 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103016e40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.975 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301c460 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.976 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103021bc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.976 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cdb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.976 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091ce00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.977 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103001cd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.977 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103002130 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:28.977 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103452d70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.058 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091ce50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.058 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092df80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.059 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dfd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.059 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e020 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.059 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e070 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.059 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e0c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.142 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e110 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.143 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e160 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.143 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02430 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.143 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02520 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.143 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02960 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.144 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b029b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.144 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02a00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.223 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e1b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.223 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e200 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.223 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e250 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.224 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e2a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.224 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103021960 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.224 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103025b90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.313 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02a50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.313 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x106000030 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.314 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c08610 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.314 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c08660 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.314 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c086b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.314 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c08700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.315 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c004e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.408 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a06c40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.409 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a071f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.409 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07240 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.409 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07290 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.409 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a079e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.410 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07a30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.492 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e2f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.492 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103022320 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.492 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103009380 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.493 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013fc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.493 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103026b30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.493 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030091e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.493 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103024db0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.573 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e340 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.573 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e390 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.574 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e7d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.574 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e820 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.574 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.575 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e8e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.661 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301ca30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.662 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103022250 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.662 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e930 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.663 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e980 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.663 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092def0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.663 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ea70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.663 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eac0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.743 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eb10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.744 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eb60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.744 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ebb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.745 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ec00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.745 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ec50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.745 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eca0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.746 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ecf0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.828 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ed40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.828 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eda0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.829 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ee00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.829 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ee50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.829 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eea0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.829 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eef0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.908 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ef40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.909 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ef90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.909 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092efe0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.909 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f030 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.910 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f080 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.910 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f0d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.910 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f120 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.991 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103452dc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.992 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103410880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.992 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034108d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.992 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034582f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.993 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104e00050 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:29.993 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049023c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.075 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458340 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.076 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103473b80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.076 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103473bd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.076 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464e10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.077 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030222a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.077 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103014aa0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.077 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464e60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.159 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f170 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.159 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902410 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.160 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00530 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.160 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00580 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.160 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00450 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.160 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00670 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.242 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901e00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.242 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07950 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.243 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900c20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.243 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900c70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.243 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900cc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.243 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900d10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.244 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900e20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.325 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900e70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.325 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900ec0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.325 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900f10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.325 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900f60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.326 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c005d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.326 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00620 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.412 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900fb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.413 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.413 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901050 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.413 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049024b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.414 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902500 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.414 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902550 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.414 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049025a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.508 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049025f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.508 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c006c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.508 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902640 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.508 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902690 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.509 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07a80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.509 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900d60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.595 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07ad0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07be0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07c30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07c80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07cd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.597 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07d20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.597 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07d70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07dc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07e10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07e60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07eb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07f00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07f50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07fa0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900db0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049026e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902730 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902c50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902ca0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902cf0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07ff0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08040 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08090 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a080e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818190 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.941 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902d40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08130 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048181e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00720 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00830 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:30.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09060 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.024 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08180 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.024 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a081d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048172d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817160 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048171b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817200 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103460150 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034601a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817250 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817a90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817ae0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.111 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817be0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.111 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00770 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.191 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07b20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07b70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08220 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08720 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08770 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a087c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.274 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902780 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c007c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c090b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049027d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902d90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902de0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902e30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902f30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c091c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09210 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09260 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c092b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09300 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09350 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c093a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c093f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09440 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09490 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c094e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09530 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09580 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c095d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09620 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09670 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c096c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09710 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09760 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09ba0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09bf0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09c40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09c90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09ce0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.611 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09d30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09d80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902e80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08270 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a082c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08810 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08970 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09dd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09e20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08860 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a088b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09e70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09ec0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.857 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a089c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817b30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817b80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817c30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817d40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08ad0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902ed0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.941 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08b20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08b70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08bc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103468b90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103468be0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:31.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034648d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e9d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ea20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013c80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09130 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817d90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09f10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a020 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a070 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a0c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08a10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08a60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02ab0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02b00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02b50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013cd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02480 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09f60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09fb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08c10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a110 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a160 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a270 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a2c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a310 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902f80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902fd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049030f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903580 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049035d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903620 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903670 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049036c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a1e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a360 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a470 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a4c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817c80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817cd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f1c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f210 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f320 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f370 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f3c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f410 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f460 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f4b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f500 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f550 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f5a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b024d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08c90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903050 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049030a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02ba0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02cb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.695 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903710 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.774 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475930 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475980 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b030f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03190 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b031e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f260 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034759d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034733f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03230 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f2b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08ce0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903760 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.941 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08d30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815b40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815b90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815be0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815ce0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:32.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815d30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049037b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103001e50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f5f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f640 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103001ea0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f690 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f6e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458a70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458ac0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301fc30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103473360 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f7f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f840 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.190 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02c20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.191 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fc80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.191 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fcd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.191 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fd20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fd70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fdc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fe10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346a100 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08e40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03280 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03320 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fe60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092feb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ff00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ff50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08d80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08dd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903830 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049038d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a3b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a400 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a510 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a620 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049039d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903a20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08e90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903970 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903a70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08fa0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346a070 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.528 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103472e50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.606 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08ff0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.606 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a560 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.607 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301fc80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.607 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a5b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a670 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a780 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a7d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a820 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08ee0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08f30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09040 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09150 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a091a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a870 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a8c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a910 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a960 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a9b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0aa00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0aa50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09090 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a090e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a091f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09300 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09350 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a093a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0aaa0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0aaf0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09240 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09290 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.945 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a093f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.945 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a098f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:33.945 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09940 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09990 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903ac0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903b10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903b60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903c60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903cb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.107 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ab40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903d00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903d50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903da0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903df0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903e40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903e90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ab90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815c30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815c80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815d80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.195 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815e90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.195 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815ee0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a099e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815f30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816a30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816a80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903ee0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903f30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.279 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903bb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09440 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09490 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09a30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09f30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09f80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.361 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09fd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a020 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a070 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a0c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a110 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.445 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a160 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.445 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a1b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.445 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a6c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903c00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904050 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815dd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815e20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816ad0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816be0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x107900000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x107a00000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103472dc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346d460 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816b20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816b70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816c30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049040a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049040f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904190 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049041e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904230 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904280 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049046c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904710 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904760 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049047b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904800 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904850 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09a80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09ad0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a200 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a310 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a360 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a3b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a710 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0abe0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816c80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816cd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816de0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816e30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:34.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816e80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0acf0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ad40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ad90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ade0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ae30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ae80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049048a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049048f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904940 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904990 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049049e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.111 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904a30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.111 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904ea0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ffa0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b033a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b033f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03500 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03550 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b035a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fff0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930040 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300d380 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458890 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0aed0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0af20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0af70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.357 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a400 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a450 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ac30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a280 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ac80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904ef0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904f40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0afc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b0d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b120 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816d20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930090 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009300e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930130 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930180 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009301d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930220 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930660 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03440 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03490 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b035f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904f90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a4a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903fb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a4f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904fe0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b010 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b060 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b170 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b280 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b2d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009306b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03750 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f760 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03640 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930750 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03690 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300d3d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103022180 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b1f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b320 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b430 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b480 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.941 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a600 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a650 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905030 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a570 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a6a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:35.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a7b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346d3d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103466270 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a720 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a800 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a910 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a960 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a9b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816d70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905080 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030221d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013bb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013c00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030131f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009307a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009307f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930900 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930950 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009309a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009309f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930a40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.274 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034588e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458930 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034766c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103476710 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103476760 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475430 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0aa00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03b90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x106100020 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b4d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0aa50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0aaa0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0aaf0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013240 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930840 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930890 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930a90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b520 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905130 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ab40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ab90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0abe0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ac30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ac80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0acd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ad20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049050d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1061000a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030223e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475480 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103022430 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930ae0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818550 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ad70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104e000f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104e000a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.695 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048185a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.695 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048186b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.695 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818af0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049055c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905610 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905660 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905780 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049057d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905820 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a850 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930b30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1061000f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.861 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a8a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.861 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818b40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.861 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049056b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.862 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818b90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104e00140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905870 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905980 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049059d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:36.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b370 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.024 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0adc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0aed0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0af20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b3c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b570 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b680 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0af70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930b80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034754d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301a590 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034661e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034752b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b5c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.191 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0afc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b610 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b6d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b7e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b830 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b8d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.274 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03be0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.274 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301a5e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048185f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818640 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x106100140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x106100190 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03c30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930bd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103018580 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03cb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x107800050 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818be0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.361 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03d00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930c20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b750 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049058c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905910 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905a20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905a70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 17:05:37.524 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ba30 of class NSCFData autoreleased with no pool in place - just leaking
Loading international/mule-util...
Loading international/ucs-normalize...
Loading term/ns-win...
Loading mwheel...
Loading progmodes/elisp-mode...
Loading emacs-lisp/float-sup...
Loading vc/vc-hooks...
Loading vc/ediff-hook...
Loading uniquify...
Loading electric...
Loading paren...
Loading emacs-lisp/shorthands...
Loading emacs-lisp/eldoc...
Loading cus-start...
Loading tooltip...
Loading international/iso-transl...
Loading leim/leim-list.el (source)...
Waiting for git...
Waiting for git...
Finding pointers to doc strings...
Finding pointers to doc strings...done
Pure-hashed: 16884 strings, 5378 vectors, 46724 conses, 4853 bytecodes, 280 others
Dumping under the name emacs.pdmp
Dumping fingerprint: c91c392f7d55d7a2a1e43f450e2589412fe7a36cd7df15aac9c94b0942baab5d
Dump complete
Byte counts: header=100 hot=11122668 discardable=139408 cold=4954800
Reloc counts: hot=635931 discardable=4978
Adding name emacs-29.0.50.1
Adding name emacs-29.0.50.1.pdmp
2022-04-24 17:05:40.175 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c29860 of class __NSCFDate autoreleased with no pool in place - just leaking
2022-04-24 17:05:40.175 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c13b00 of class NSCFTimer autoreleased with no pool in place - just leaking
cp -f emacs.pdmp bootstrap-emacs.pdmp 
/usr/bin/make -C ../nextstep all
rm -rf /Users/HOME/Desktop/emacs/nextstep/Emacs.app
../build-aux/install-sh -c -d /Users/HOME/Desktop/emacs/nextstep/Emacs.app
( cd ./Cocoa/Emacs.base ; tar cfh - . ) | \
	  ( cd /Users/HOME/Desktop/emacs/nextstep/Emacs.app ; umask 022; tar xf - )
[ "`cd . && /bin/pwd`" = "`/bin/pwd`" ] || \
	  ( cd Cocoa/Emacs.base ; tar cfh - . ) | \
	    ( cd /Users/HOME/Desktop/emacs/nextstep/Emacs.app ; umask 022; tar xf - )
touch /Users/HOME/Desktop/emacs/nextstep/Emacs.app
/usr/bin/make -C ../src emacs
/usr/bin/make -C ../admin/charsets all
make[4]: Nothing to be done for `all'.
/usr/bin/make -C ../admin/unidata charscript.el
make[4]: Nothing to be done for `charscript.el'.
/usr/bin/make -C ../admin/unidata emoji-zwj.el
make[4]: Nothing to be done for `emoji-zwj.el'.
/usr/bin/make -C ../admin/unidata all EMACS="../../src/bootstrap-emacs"
make[4]: Nothing to be done for `all'.
/usr/bin/make -C ../admin/charsets cp51932.el
make[4]: Nothing to be done for `cp51932.el'.
/usr/bin/make -C ../admin/charsets eucjp-ms.el
make[4]: Nothing to be done for `eucjp-ms.el'.
../build-aux/install-sh -c -d /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS
cp -f ../src/emacs /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs
../build-aux/install-sh -c -d /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/libexec
cp -f ../src/emacs.pdmp /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/libexec/Emacs.pdmp
/usr/bin/make -C lisp all
/usr/bin/make -C ../leim all EMACS="../src/emacs"
make[2]: Nothing to be done for `all'.
/usr/bin/make -C ../admin/grammars all EMACS="../../src/emacs"
make[2]: Nothing to be done for `all'.
  ELC      emacs-lisp/eieio.elc
  ELC      emacs-lisp/eieio-base.elc
  ELC      cedet/semantic/db.elc
  ELC      align.elc
  ELC      allout-widgets.elc
  ELC      allout.elc
  ELC      ansi-color.elc
  ELC      apropos.elc
  ELC      arc-mode.elc
  ELC      array.elc
  ELC      auth-source-pass.elc
  ELC      auth-source.elc
  ELC      autoinsert.elc
  ELC      autorevert.elc
  ELC      avoid.elc
  ELC      battery.elc
  ELC      bookmark.elc
  ELC      bs.elc
  ELC      calculator.elc
  ELC      cdl.elc
  ELC      char-fold.elc
  ELC      chistory.elc
  ELC      cmuscheme.elc
  ELC      color.elc
  ELC      comint.elc
  ELC      completion.elc
  ELC      cus-dep.elc
  ELC      cus-edit.elc
  ELC      cus-theme.elc
  ELC      dabbrev.elc
  ELC      delim-col.elc
  ELC      delsel.elc
  ELC      descr-text.elc
  ELC      desktop.elc
  ELC      dframe.elc
  ELC      dired-aux.elc
  ELC      dired-x.elc
  ELC      dired.elc
  ELC      dirtrack.elc
  ELC      display-fill-column-indicator.elc
  ELC      display-line-numbers.elc
  ELC      doc-view.elc
  ELC      dom.elc
  ELC      double.elc
  ELC      ebuff-menu.elc
  ELC      echistory.elc
  ELC      ecomplete.elc
  ELC      edmacro.elc
  ELC      ehelp.elc
  ELC      elec-pair.elc
  ELC      elide-head.elc
  ELC      emacs-lock.elc
  ELC      epa-dired.elc
  ELC      epa-file.elc
  ELC      epa-ks.elc
  ELC      epa-mail.elc
  ELC      epa.elc
  ELC      epg-config.elc
  ELC      epg.elc
  ELC      expand.elc
  ELC      ezimage.elc
  ELC      face-remap.elc
  ELC      facemenu.elc
  ELC      ffap.elc
  ELC      filecache.elc
  ELC      fileloop.elc
  ELC      filenotify.elc
  ELC      files-x.elc
  ELC      filesets.elc
  ELC      find-cmd.elc
  ELC      find-dired.elc
  ELC      find-file.elc
  ELC      find-lisp.elc
  ELC      finder.elc
  ELC      flow-ctrl.elc
  ELC      foldout.elc
  ELC      follow.elc
  ELC      format-spec.elc
  ELC      forms.elc
  ELC      frameset.elc
  ELC      generic-x.elc
  ELC      help-at-pt.elc
  ELC      help-fns.elc
  ELC      help-macro.elc
  ELC      help-mode.elc
  ELC      hex-util.elc
  ELC      hexl.elc
  ELC      hfy-cmap.elc
  ELC      hi-lock.elc
  ELC      hilit-chg.elc
  ELC      hippie-exp.elc
  ELC      hl-line.elc
  ELC      htmlfontify.elc
  ELC      ibuf-ext.elc
  ELC      ibuf-macs.elc
  ELC      ibuffer.elc
  ELC      icomplete.elc
  ELC      ido.elc
  ELC      ielm.elc
  ELC      iimage.elc
  ELC      image-dired.elc
  ELC      image-file.elc
  ELC      image-mode.elc
  ELC      imenu.elc
  ELC      info-look.elc
  ELC      info-xref.elc
  ELC      info.elc
  ELC      informat.elc
  ELC      isearchb.elc
  ELC      jka-compr.elc
  ELC      json.elc
  ELC      jsonrpc.elc
  ELC      kermit.elc
  ELC      kmacro.elc
  ELC      linum.elc
  ELC      loadhist.elc
  ELC      locate.elc
  ELC      lpr.elc
  ELC      macros.elc
  ELC      makesum.elc
  ELC      man.elc
  ELC      master.elc
  ELC      mb-depth.elc
  ELC      md4.elc
  ELC      midnight.elc
  ELC      minibuf-eldef.elc
  ELC      misc.elc
  ELC      misearch.elc
  ELC      mouse-copy.elc
  ELC      mouse-drag.elc
  ELC      mpc.elc
  ELC      msb.elc
  ELC      notifications.elc
  ELC      novice.elc
  ELC      outline.elc
  ELC      password-cache.elc
  ELC      pcmpl-cvs.elc
  ELC      pcmpl-gnu.elc
  ELC      pcmpl-linux.elc
  ELC      pcmpl-rpm.elc
  ELC      pcmpl-unix.elc
  ELC      pcmpl-x.elc
  ELC      pcomplete.elc
  ELC      pixel-scroll.elc
  ELC      plstore.elc
  ELC      printing.elc
  ELC      proced.elc
  ELC      profiler.elc
  ELC      ps-bdf.elc
  ELC      ps-def.elc
  ELC      ps-mule.elc
  ELC      ps-print.elc
  ELC      ps-samp.elc
  ELC      recentf.elc
  ELC      rect.elc
  ELC      registry.elc
  ELC      repeat.elc
  ELC      reposition.elc
  ELC      reveal.elc
  ELC      rot13.elc
  ELC      rtree.elc
  ELC      ruler-mode.elc
  ELC      savehist.elc
  ELC      saveplace.elc
  ELC      scroll-all.elc
  ELC      scroll-lock.elc
  ELC      server.elc
  ELC      ses.elc
  ELC      shadowfile.elc
  ELC      shell.elc
  ELC      skeleton.elc
  ELC      so-long.elc
  ELC      sort.elc
  ELC      soundex.elc
  ELC      speedbar.elc
  ELC      sqlite-mode.elc
  ELC      sqlite.elc
  ELC      strokes.elc
  ELC      svg.elc
  ELC      t-mouse.elc
  ELC      tab-line.elc
  ELC      tabify.elc
  ELC      talk.elc
  ELC      tar-mode.elc
  ELC      tempo.elc
  ELC      term.elc
  ELC      thingatpt.elc
  ELC      thread.elc
  ELC      thumbs.elc
  ELC      time-stamp.elc
  ELC      time.elc
  ELC      timezone.elc
  ELC      tmm.elc
  ELC      transient.elc
  ELC      tree-widget.elc
  ELC      tutorial.elc
  ELC      type-break.elc
  ELC      userlock.elc
  ELC      vcursor.elc
  ELC      view.elc
  ELC      wdired.elc
  ELC      whitespace.elc
  ELC      wid-browse.elc
  ELC      wid-edit.elc
  ELC      windmove.elc
  ELC      winner.elc
  ELC      woman.elc
  ELC      xdg.elc
  ELC      xml.elc
  ELC      xt-mouse.elc
  ELC      xwidget.elc
  ELC      yank-media.elc
  ELC      calc/calc-aent.elc
  ELC      calc/calc-alg.elc
  ELC      calc/calc-arith.elc
  ELC      calc/calc-bin.elc
  ELC      calc/calc-comb.elc
  ELC      calc/calc-cplx.elc
  ELC      calc/calc-embed.elc
  ELC      calc/calc-ext.elc
  ELC      calc/calc-fin.elc
  ELC      calc/calc-forms.elc
  ELC      calc/calc-frac.elc
  ELC      calc/calc-funcs.elc
  ELC      calc/calc-graph.elc
  ELC      calc/calc-help.elc
  ELC      calc/calc-incom.elc
  ELC      calc/calc-keypd.elc
  ELC      calc/calc-lang.elc
  ELC      calc/calc-macs.elc
  ELC      calc/calc-map.elc
  ELC      calc/calc-math.elc
  ELC      calc/calc-menu.elc
  ELC      calc/calc-misc.elc
  ELC      calc/calc-mode.elc
  ELC      calc/calc-mtx.elc
  ELC      calc/calc-nlfit.elc
  ELC      calc/calc-poly.elc
  ELC      calc/calc-prog.elc
  ELC      calc/calc-rewr.elc
  ELC      calc/calc-rules.elc
  ELC      calc/calc-sel.elc
  ELC      calc/calc-stat.elc
  ELC      calc/calc-store.elc
  ELC      calc/calc-stuff.elc
  ELC      calc/calc-trail.elc
  ELC      calc/calc-undo.elc
  ELC      calc/calc-units.elc
  ELC      calc/calc-vec.elc
  ELC      calc/calc-yank.elc
  ELC      calc/calc.elc
  ELC      calc/calcalg2.elc
  ELC      calc/calcalg3.elc
  ELC      calc/calccomp.elc
  ELC      calc/calcsel2.elc
  ELC      calendar/appt.elc
  ELC      calendar/cal-bahai.elc
  ELC      calendar/cal-china.elc
  ELC      calendar/cal-coptic.elc
  ELC      calendar/cal-dst.elc
  ELC      calendar/cal-french.elc
  ELC      calendar/cal-hebrew.elc
  ELC      calendar/cal-html.elc
  ELC      calendar/cal-islam.elc
  ELC      calendar/cal-iso.elc
  ELC      calendar/cal-julian.elc
  ELC      calendar/cal-mayan.elc
  ELC      calendar/cal-menu.elc
  ELC      calendar/cal-move.elc
  ELC      calendar/cal-persia.elc
  ELC      calendar/cal-tex.elc
  ELC      calendar/cal-x.elc
  ELC      calendar/calendar.elc
  ELC      calendar/diary-lib.elc
  ELC      calendar/holidays.elc
  ELC      calendar/icalendar.elc
  ELC      calendar/iso8601.elc
  ELC      calendar/lunar.elc
  ELC      calendar/parse-time.elc
  ELC      calendar/solar.elc
  ELC      calendar/time-date.elc
  ELC      calendar/timeclock.elc
  ELC      calendar/todo-mode.elc
  ELC      cedet/cedet-cscope.elc
  ELC      cedet/cedet-files.elc
  ELC      cedet/cedet-global.elc
  ELC      cedet/cedet-idutils.elc
  ELC      cedet/cedet.elc
  ELC      cedet/data-debug.elc
  ELC      cedet/ede.elc
  ELC      cedet/mode-local.elc
  ELC      cedet/pulse.elc
  ELC      cedet/semantic.elc
  ELC      cedet/srecode.elc
  ELC      cedet/ede/auto.elc
  ELC      cedet/ede/autoconf-edit.elc
  ELC      cedet/ede/base.elc
  ELC      cedet/ede/config.elc
  ELC      cedet/ede/cpp-root.elc
  ELC      cedet/ede/custom.elc
  ELC      cedet/ede/detect.elc
  ELC      cedet/ede/dired.elc
  ELC      cedet/ede/emacs.elc
  ELC      cedet/ede/files.elc
  ELC      cedet/ede/generic.elc
  ELC      cedet/ede/linux.elc
  ELC      cedet/ede/locate.elc
  ELC      cedet/ede/make.elc
  ELC      cedet/ede/makefile-edit.elc
  ELC      cedet/ede/pconf.elc
  ELC      cedet/ede/pmake.elc
  ELC      cedet/ede/proj-archive.elc
  ELC      cedet/ede/proj-aux.elc
  ELC      cedet/ede/proj-comp.elc
  ELC      cedet/ede/proj-elisp.elc
  ELC      cedet/ede/proj-info.elc
  ELC      cedet/ede/proj-misc.elc
  ELC      cedet/ede/proj-obj.elc
  ELC      cedet/ede/proj-prog.elc
  ELC      cedet/ede/proj-scheme.elc
  ELC      cedet/ede/proj-shared.elc
  ELC      cedet/ede/proj.elc
  ELC      cedet/ede/project-am.elc
  ELC      cedet/ede/shell.elc
  ELC      cedet/ede/simple.elc
  ELC      cedet/ede/source.elc
  ELC      cedet/ede/speedbar.elc
  ELC      cedet/ede/srecode.elc
  ELC      cedet/ede/system.elc
  ELC      cedet/ede/util.elc
  ELC      cedet/semantic/analyze.elc
  ELC      cedet/semantic/bovine.elc
  ELC      cedet/semantic/chart.elc
  ELC      cedet/semantic/complete.elc
  ELC      cedet/semantic/ctxt.elc
  ELC      cedet/semantic/db-debug.elc
  ELC      cedet/semantic/db-ebrowse.elc
  ELC      cedet/semantic/db-el.elc
  ELC      cedet/semantic/db-file.elc
  ELC      cedet/semantic/db-find.elc
  ELC      cedet/semantic/db-global.elc
  ELC      cedet/semantic/db-javascript.elc
  ELC      cedet/semantic/db-mode.elc
  ELC      cedet/semantic/db-ref.elc
  ELC      cedet/semantic/db-typecache.elc
  ELC      cedet/semantic/debug.elc
  ELC      cedet/semantic/decorate.elc
  ELC      cedet/semantic/dep.elc
  ELC      cedet/semantic/doc.elc
  ELC      cedet/semantic/ede-grammar.elc
  ELC      cedet/semantic/edit.elc
  ELC      cedet/semantic/find.elc
  ELC      cedet/semantic/format.elc
  ELC      cedet/semantic/fw.elc
  ELC      cedet/semantic/grammar-wy.elc
  ELC      cedet/semantic/grammar.elc
  ELC      cedet/semantic/grm-wy-boot.elc
  ELC      cedet/semantic/html.elc
  ELC      cedet/semantic/ia-sb.elc
  ELC      cedet/semantic/ia.elc
  ELC      cedet/semantic/idle.elc
  ELC      cedet/semantic/imenu.elc
  ELC      cedet/semantic/java.elc
  ELC      cedet/semantic/lex-spp.elc
  ELC      cedet/semantic/lex.elc
  ELC      cedet/semantic/mru-bookmark.elc
  ELC      cedet/semantic/sb.elc
  ELC      cedet/semantic/scope.elc
  ELC      cedet/semantic/senator.elc
  ELC      cedet/semantic/sort.elc
  ELC      cedet/semantic/symref.elc
  ELC      cedet/semantic/tag-file.elc
  ELC      cedet/semantic/tag-ls.elc
  ELC      cedet/semantic/tag-write.elc
  ELC      cedet/semantic/tag.elc
  ELC      cedet/semantic/texi.elc
  ELC      cedet/semantic/util-modes.elc
  ELC      cedet/semantic/util.elc
  ELC      cedet/semantic/wisent.elc
  ELC      cedet/semantic/analyze/complete.elc
  ELC      cedet/semantic/analyze/debug.elc
  ELC      cedet/semantic/analyze/fcn.elc
  ELC      cedet/semantic/analyze/refs.elc
  ELC      cedet/semantic/bovine/c-by.elc
  ELC      cedet/semantic/bovine/c.elc
  ELC      cedet/semantic/bovine/debug.elc
  ELC      cedet/semantic/bovine/el.elc
  ELC      cedet/semantic/bovine/gcc.elc
  ELC      cedet/semantic/bovine/grammar.elc
  ELC      cedet/semantic/bovine/make-by.elc
  ELC      cedet/semantic/bovine/make.elc
  ELC      cedet/semantic/bovine/scm-by.elc
  ELC      cedet/semantic/bovine/scm.elc
  ELC      cedet/semantic/decorate/include.elc
  ELC      cedet/semantic/decorate/mode.elc
  ELC      cedet/semantic/symref/cscope.elc
  ELC      cedet/semantic/symref/filter.elc
  ELC      cedet/semantic/symref/global.elc
  ELC      cedet/semantic/symref/grep.elc
  ELC      cedet/semantic/symref/idutils.elc
  ELC      cedet/semantic/symref/list.elc
  ELC      cedet/semantic/wisent/comp.elc
  ELC      cedet/semantic/wisent/grammar.elc
  ELC      cedet/semantic/wisent/java-tags.elc
  ELC      cedet/semantic/wisent/javascript.elc
  ELC      cedet/semantic/wisent/javat-wy.elc
  ELC      cedet/semantic/wisent/js-wy.elc
  ELC      cedet/semantic/wisent/python-wy.elc
  ELC      cedet/semantic/wisent/python.elc
  ELC      cedet/semantic/wisent/wisent.elc
  ELC      cedet/srecode/args.elc
  ELC      cedet/srecode/compile.elc
  ELC      cedet/srecode/cpp.elc
  ELC      cedet/srecode/ctxt.elc
  ELC      cedet/srecode/dictionary.elc
  ELC      cedet/srecode/document.elc
  ELC      cedet/srecode/el.elc
  ELC      cedet/srecode/expandproto.elc
  ELC      cedet/srecode/extract.elc
  ELC      cedet/srecode/fields.elc
  ELC      cedet/srecode/filters.elc
  ELC      cedet/srecode/find.elc
  ELC      cedet/srecode/getset.elc
  ELC      cedet/srecode/insert.elc
  ELC      cedet/srecode/java.elc
  ELC      cedet/srecode/map.elc
  ELC      cedet/srecode/mode.elc
  ELC      cedet/srecode/semantic.elc
  ELC      cedet/srecode/srt-mode.elc
  ELC      cedet/srecode/srt-wy.elc
  ELC      cedet/srecode/srt.elc
  ELC      cedet/srecode/table.elc
  ELC      cedet/srecode/template.elc
  ELC      cedet/srecode/texi.elc
  ELC      emacs-lisp/advice.elc
  ELC      emacs-lisp/avl-tree.elc
  ELC      emacs-lisp/backtrace.elc
  ELC      emacs-lisp/benchmark.elc
  ELC      emacs-lisp/bindat.elc
  ELC      emacs-lisp/chart.elc
  ELC      emacs-lisp/check-declare.elc
  ELC      emacs-lisp/checkdoc.elc
  ELC      emacs-lisp/cl-extra.elc
  ELC      emacs-lisp/cl-indent.elc
  ELC      emacs-lisp/cl-lib.elc
  ELC      emacs-lisp/cl-macs.elc
  ELC      emacs-lisp/cl-print.elc
  ELC      emacs-lisp/cl-seq.elc
  ELC      emacs-lisp/copyright.elc
  ELC      emacs-lisp/crm.elc
  ELC      emacs-lisp/cursor-sensor.elc
  ELC      emacs-lisp/debug.elc
  ELC      emacs-lisp/derived.elc
  ELC      emacs-lisp/disass.elc
  ELC      emacs-lisp/easy-mmode.elc
  ELC      emacs-lisp/edebug.elc
  ELC      emacs-lisp/eieio-core.elc
  ELC      emacs-lisp/eieio-custom.elc
  ELC      emacs-lisp/eieio-datadebug.elc
  ELC      emacs-lisp/eieio-opt.elc
  ELC      emacs-lisp/eieio-speedbar.elc
  ELC      emacs-lisp/elint.elc
  ELC      emacs-lisp/elp.elc
  ELC      emacs-lisp/ert-x.elc
  ELC      emacs-lisp/ert.elc
  ELC      emacs-lisp/ewoc.elc
  ELC      emacs-lisp/faceup.elc
  ELC      emacs-lisp/find-func.elc
  ELC      emacs-lisp/generator.elc
  ELC      emacs-lisp/generic.elc
  ELC      emacs-lisp/gv.elc
  ELC      emacs-lisp/helper.elc
  ELC      emacs-lisp/hierarchy.elc
  ELC      emacs-lisp/inline.elc
  ELC      emacs-lisp/let-alist.elc
  ELC      emacs-lisp/lisp-mnt.elc
  ELC      emacs-lisp/map.elc
  ELC      emacs-lisp/memory-report.elc
  ELC      emacs-lisp/multisession.elc
  ELC      emacs-lisp/package-x.elc
  ELC      emacs-lisp/package.elc
  ELC      emacs-lisp/pcase.elc
  ELC      emacs-lisp/pp.elc
  ELC      emacs-lisp/radix-tree.elc
  ELC      emacs-lisp/range.elc
  ELC      emacs-lisp/re-builder.elc
  ELC      emacs-lisp/regi.elc
  ELC      emacs-lisp/ring.elc
  ELC      emacs-lisp/rmc.elc
  ELC      emacs-lisp/rx.elc
  ELC      emacs-lisp/seq.elc
  ELC      emacs-lisp/shadow.elc
  ELC      emacs-lisp/shortdoc.elc
  ELC      emacs-lisp/smie.elc
  ELC      emacs-lisp/subr-x.elc
  ELC      emacs-lisp/tcover-ses.elc
  ELC      emacs-lisp/testcover.elc
  ELC      emacs-lisp/text-property-search.elc
  ELC      emacs-lisp/thunk.elc
  ELC      emacs-lisp/timer-list.elc
  ELC      emacs-lisp/tq.elc
  ELC      emacs-lisp/trace.elc
  ELC      emacs-lisp/unsafep.elc
  ELC      emacs-lisp/vtable.elc
  ELC      emacs-lisp/warnings.elc
  ELC      emulation/cua-base.elc
  ELC      emulation/cua-gmrk.elc
  ELC      emulation/cua-rect.elc
  ELC      emulation/edt-lk201.elc
  ELC      emulation/edt-mapper.elc
  ELC      emulation/edt-pc.elc
  ELC      emulation/edt-vt100.elc
  ELC      emulation/edt.elc
  ELC      emulation/keypad.elc
  ELC      emulation/viper-cmd.elc
  ELC      emulation/viper-ex.elc
  ELC      emulation/viper-init.elc
  ELC      emulation/viper-keym.elc
  ELC      emulation/viper-macs.elc
  ELC      emulation/viper-mous.elc
  ELC      emulation/viper-util.elc
  ELC      emulation/viper.elc
  ELC      erc/erc-autoaway.elc
  ELC      erc/erc-backend.elc
  ELC      erc/erc-button.elc
  ELC      erc/erc-capab.elc
  ELC      erc/erc-compat.elc
  ELC      erc/erc-dcc.elc
  ELC      erc/erc-desktop-notifications.elc
  ELC      erc/erc-ezbounce.elc
  ELC      erc/erc-fill.elc
  ELC      erc/erc-goodies.elc
  ELC      erc/erc-ibuffer.elc
  ELC      erc/erc-identd.elc
  ELC      erc/erc-imenu.elc
  ELC      erc/erc-join.elc
  ELC      erc/erc-lang.elc
  ELC      erc/erc-list.elc
  ELC      erc/erc-log.elc
  ELC      erc/erc-match.elc
  ELC      erc/erc-menu.elc
  ELC      erc/erc-netsplit.elc
  ELC      erc/erc-networks.elc
  ELC      erc/erc-notify.elc
  ELC      erc/erc-page.elc
  ELC      erc/erc-pcomplete.elc
  ELC      erc/erc-replace.elc
  ELC      erc/erc-ring.elc
  ELC      erc/erc-services.elc
  ELC      erc/erc-sound.elc
  ELC      erc/erc-speedbar.elc
  ELC      erc/erc-spelling.elc
  ELC      erc/erc-stamp.elc
  ELC      erc/erc-status-sidebar.elc
  ELC      erc/erc-track.elc
  ELC      erc/erc-truncate.elc
  ELC      erc/erc-xdcc.elc
  ELC      erc/erc.elc
  ELC      eshell/em-alias.elc
  ELC      eshell/em-banner.elc
  ELC      eshell/em-basic.elc
  ELC      eshell/em-cmpl.elc
  ELC      eshell/em-dirs.elc
  ELC      eshell/em-elecslash.elc
  ELC      eshell/em-extpipe.elc
  ELC      eshell/em-glob.elc
  ELC      eshell/em-hist.elc
  ELC      eshell/em-ls.elc
  ELC      eshell/em-pred.elc
  ELC      eshell/em-prompt.elc
  ELC      eshell/em-rebind.elc
  ELC      eshell/em-script.elc
  ELC      eshell/em-smart.elc
  ELC      eshell/em-term.elc
  ELC      eshell/em-tramp.elc
  ELC      eshell/em-unix.elc
  ELC      eshell/em-xtra.elc
  ELC      eshell/esh-arg.elc
  ELC      eshell/esh-cmd.elc
  ELC      eshell/esh-ext.elc
  ELC      eshell/esh-io.elc
  ELC      eshell/esh-mode.elc
  ELC      eshell/esh-module.elc
  ELC      eshell/esh-opt.elc
  ELC      eshell/esh-proc.elc
  ELC      eshell/esh-util.elc
  ELC      eshell/esh-var.elc
  ELC      eshell/eshell.elc
  ELC      gnus/canlock.elc
  ELC      gnus/deuglify.elc
  ELC      gnus/gmm-utils.elc
  ELC      gnus/gnus-agent.elc
  ELC      gnus/gnus-art.elc
  ELC      gnus/gnus-async.elc
  ELC      gnus/gnus-bcklg.elc
  ELC      gnus/gnus-bookmark.elc
  ELC      gnus/gnus-cache.elc
  ELC      gnus/gnus-cite.elc
  ELC      gnus/gnus-cloud.elc
  ELC      gnus/gnus-cus.elc
  ELC      gnus/gnus-dbus.elc
  ELC      gnus/gnus-delay.elc
  ELC      gnus/gnus-demon.elc
  ELC      gnus/gnus-diary.elc
  ELC      gnus/gnus-dired.elc
  ELC      gnus/gnus-draft.elc
  ELC      gnus/gnus-dup.elc
  ELC      gnus/gnus-eform.elc
  ELC      gnus/gnus-fun.elc
  ELC      gnus/gnus-gravatar.elc
  ELC      gnus/gnus-group.elc
  ELC      gnus/gnus-html.elc
  ELC      gnus/gnus-icalendar.elc
  ELC      gnus/gnus-int.elc
  ELC      gnus/gnus-kill.elc
  ELC      gnus/gnus-logic.elc
  ELC      gnus/gnus-mh.elc
  ELC      gnus/gnus-ml.elc
  ELC      gnus/gnus-mlspl.elc
  ELC      gnus/gnus-msg.elc
  ELC      gnus/gnus-notifications.elc
  ELC      gnus/gnus-picon.elc
  ELC      gnus/gnus-range.elc
  ELC      gnus/gnus-registry.elc
  ELC      gnus/gnus-rfc1843.elc
  ELC      gnus/gnus-rmail.elc
  ELC      gnus/gnus-salt.elc
  ELC      gnus/gnus-score.elc
  ELC      gnus/gnus-search.elc
  ELC      gnus/gnus-sieve.elc
  ELC      gnus/gnus-spec.elc
  ELC      gnus/gnus-srvr.elc
  ELC      gnus/gnus-start.elc
  ELC      gnus/gnus-sum.elc
  ELC      gnus/gnus-topic.elc
  ELC      gnus/gnus-undo.elc
  ELC      gnus/gnus-util.elc
  ELC      gnus/gnus-uu.elc
  ELC      gnus/gnus-vm.elc
  ELC      gnus/gnus-win.elc
  ELC      gnus/gnus.elc
  ELC      gnus/gssapi.elc
  ELC      gnus/legacy-gnus-agent.elc
  ELC      gnus/mail-source.elc
  ELC      gnus/message.elc
  ELC      gnus/mm-archive.elc
  ELC      gnus/mm-bodies.elc
  ELC      gnus/mm-decode.elc
  ELC      gnus/mm-encode.elc
  ELC      gnus/mm-extern.elc
  ELC      gnus/mm-partial.elc
  ELC      gnus/mm-url.elc
  ELC      gnus/mm-util.elc
  ELC      gnus/mm-uu.elc
  ELC      gnus/mm-view.elc
  ELC      gnus/mml-sec.elc
  ELC      gnus/mml-smime.elc
  ELC      gnus/mml.elc
  ELC      gnus/mml1991.elc
  ELC      gnus/mml2015.elc
  ELC      gnus/nnagent.elc
  ELC      gnus/nnbabyl.elc
  ELC      gnus/nndiary.elc
  ELC      gnus/nndir.elc
  ELC      gnus/nndoc.elc
  ELC      gnus/nndraft.elc
  ELC      gnus/nneething.elc
  ELC      gnus/nnfolder.elc
  ELC      gnus/nngateway.elc
  ELC      gnus/nnheader.elc
  ELC      gnus/nnimap.elc
  ELC      gnus/nnmail.elc
  ELC      gnus/nnmaildir.elc
  ELC      gnus/nnmairix.elc
  ELC      gnus/nnmbox.elc
  ELC      gnus/nnmh.elc
  ELC      gnus/nnml.elc
  ELC      gnus/nnnil.elc
  ELC      gnus/nnoo.elc
  ELC      gnus/nnregistry.elc
  ELC      gnus/nnrss.elc
  ELC      gnus/nnselect.elc
  ELC      gnus/nnspool.elc
  ELC      gnus/nntp.elc
  ELC      gnus/nnvirtual.elc
  ELC      gnus/nnweb.elc
  ELC      gnus/score-mode.elc
  ELC      gnus/smiley.elc
  ELC      gnus/smime.elc
  ELC      gnus/spam-report.elc
  ELC      gnus/spam-stat.elc
  ELC      gnus/spam-wash.elc
  ELC      gnus/spam.elc
  ELC      image/compface.elc
  ELC      image/exif.elc
  ELC      image/gravatar.elc
  ELC      image/image-converter.elc
  ELC      international/ccl.elc
  ELC      international/emoji.elc
  ELC      international/isearch-x.elc
  ELC      international/iso-ascii.elc
  ELC      international/iso-cvt.elc
  ELC      international/ja-dic-cnv.elc
  ELC      international/ja-dic-utl.elc
  ELC      international/kinsoku.elc
  ELC      international/kkc.elc
  ELC      international/latexenc.elc
  ELC      international/latin1-disp.elc
  ELC      international/mule-diag.elc
  ELC      international/ogonek.elc
  ELC      international/quail.elc
  ELC      international/rfc1843.elc
  ELC      international/robin.elc
  ELC      international/textsec-check.elc
  ELC      international/textsec.elc
  ELC      international/utf-7.elc
  ELC      international/utf7.elc
  ELC      language/china-util.elc
  ELC      language/cyril-util.elc
  ELC      language/ethio-util.elc
  ELC      language/hanja-util.elc
  ELC      language/ind-util.elc
  ELC      language/japan-util.elc
  ELC      language/korea-util.elc
  ELC      language/lao-util.elc
  ELC      language/pinyin.elc
  ELC      language/thai-util.elc
  ELC      language/thai-word.elc
  ELC      language/tibet-util.elc
  ELC      language/tv-util.elc
  ELC      language/viet-util.elc
  ELC      leim/ja-dic/ja-dic.elc
  INFO     Extracting OKURI-NASI entries... 
  INFO     Extracting OKURI-NASI entries...15% 
  INFO     Extracting OKURI-NASI entries...31% 
  INFO     Extracting OKURI-NASI entries...44% 
  INFO     Extracting OKURI-NASI entries...59% 
  INFO     Extracting OKURI-NASI entries...74% 
  INFO     Extracting OKURI-NASI entries...90% 
  INFO     Extracting OKURI-NASI entries...done
  ELC      leim/quail/4Corner.elc
  ELC      leim/quail/ARRAY30.elc
  ELC      leim/quail/CCDOSPY.elc
  ELC      leim/quail/CTLau-b5.elc
  ELC      leim/quail/CTLau.elc
  ELC      leim/quail/ECDICT.elc
  ELC      leim/quail/ETZY.elc
  ELC      leim/quail/PY-b5.elc
  ELC      leim/quail/PY.elc
  ELC      leim/quail/Punct-b5.elc
  ELC      leim/quail/Punct.elc
  ELC      leim/quail/QJ-b5.elc
  ELC      leim/quail/QJ.elc
  ELC      leim/quail/SW.elc
  ELC      leim/quail/TONEPY.elc
  ELC      leim/quail/ZIRANMA.elc
  ELC      leim/quail/ZOZY.elc
  ELC      leim/quail/arabic.elc
  ELC      leim/quail/cham.elc
  ELC      leim/quail/compose.elc
  ELC      leim/quail/croatian.elc
  ELC      leim/quail/cyril-jis.elc
  ELC      leim/quail/cyrillic.elc
  ELC      leim/quail/czech.elc
  ELC      leim/quail/emoji.elc
  ELC      leim/quail/ethiopic.elc
  ELC      leim/quail/georgian.elc
  ELC      leim/quail/greek.elc
  ELC      leim/quail/hangul.elc
  ELC      leim/quail/hanja-jis.elc
  ELC      leim/quail/hanja.elc
  ELC      leim/quail/hanja3.elc
  ELC      leim/quail/hebrew.elc
  ELC      leim/quail/indian.elc
  ELC      leim/quail/ipa-praat.elc
  ELC      leim/quail/ipa.elc
  ELC      leim/quail/japanese.elc
  ELC      leim/quail/lao.elc
  ELC      leim/quail/latin-alt.elc
  ELC      leim/quail/latin-ltx.elc
  ELC      leim/quail/latin-post.elc
  ELC      leim/quail/latin-pre.elc
  ELC      leim/quail/lrt.elc
  ELC      leim/quail/persian.elc
  ELC      leim/quail/programmer-dvorak.elc
  ELC      leim/quail/py-punct.elc
  ELC      leim/quail/pypunct-b5.elc
  ELC      leim/quail/quick-b5.elc
  ELC      leim/quail/quick-cns.elc
  ELC      leim/quail/rfc1345.elc
  ELC      leim/quail/sami.elc
  ELC      leim/quail/sgml-input.elc
  ELC      leim/quail/sisheng.elc
  ELC      leim/quail/slovak.elc
  ELC      leim/quail/symbol-ksc.elc
  ELC      leim/quail/tamil-dvorak.elc
  ELC      leim/quail/thai.elc
  ELC      leim/quail/tibetan.elc
  ELC      leim/quail/tsang-b5.elc
  ELC      leim/quail/tsang-cns.elc
  ELC      leim/quail/uni-input.elc
  ELC      leim/quail/viqr.elc
  ELC      leim/quail/vntelex.elc
  ELC      leim/quail/vnvni.elc
  ELC      leim/quail/welsh.elc
  ELC      mail/binhex.elc
  ELC      mail/emacsbug.elc
  ELC      mail/feedmail.elc
  ELC      mail/flow-fill.elc
  ELC      mail/footnote.elc
  ELC      mail/hashcash.elc
  ELC      mail/ietf-drums-date.elc
  ELC      mail/ietf-drums.elc
  ELC      mail/mail-extr.elc
  ELC      mail/mail-hist.elc
  ELC      mail/mail-parse.elc
  ELC      mail/mail-prsvr.elc
  ELC      mail/mail-utils.elc
  ELC      mail/mailabbrev.elc
  ELC      mail/mailalias.elc
  ELC      mail/mailclient.elc
  ELC      mail/mailheader.elc
  ELC      mail/mspools.elc
  ELC      mail/qp.elc
  ELC      mail/reporter.elc
  ELC      mail/rfc2045.elc
  ELC      mail/rfc2047.elc
  ELC      mail/rfc2231.elc
  ELC      mail/rfc6068.elc
  ELC      mail/rfc822.elc
  ELC      mail/rmail-spam-filter.elc
  ELC      mail/rmail.elc
  ELC      mail/rmailedit.elc
  ELC      mail/rmailkwd.elc
  ELC      mail/rmailmm.elc
  ELC      mail/rmailmsc.elc
  ELC      mail/rmailout.elc
  ELC      mail/rmailsort.elc
  ELC      mail/rmailsum.elc
  ELC      mail/sendmail.elc
  ELC      mail/smtpmail.elc
  ELC      mail/supercite.elc
  ELC      mail/uce.elc
  ELC      mail/undigest.elc
  ELC      mail/unrmail.elc
  ELC      mail/uudecode.elc
  ELC      mail/yenc.elc
  ELC      mh-e/mh-alias.elc
  ELC      mh-e/mh-buffers.elc
  ELC      mh-e/mh-comp.elc
  ELC      mh-e/mh-compat.elc
  ELC      mh-e/mh-e.elc
  ELC      mh-e/mh-folder.elc
  ELC      mh-e/mh-funcs.elc
  ELC      mh-e/mh-gnus.elc
  ELC      mh-e/mh-identity.elc
  ELC      mh-e/mh-inc.elc
  ELC      mh-e/mh-junk.elc
  ELC      mh-e/mh-letter.elc
  ELC      mh-e/mh-limit.elc
  ELC      mh-e/mh-mime.elc
  ELC      mh-e/mh-print.elc
  ELC      mh-e/mh-scan.elc
  ELC      mh-e/mh-search.elc
  ELC      mh-e/mh-seq.elc
  ELC      mh-e/mh-show.elc
  ELC      mh-e/mh-speed.elc
  ELC      mh-e/mh-thread.elc
  ELC      mh-e/mh-tool-bar.elc
  ELC      mh-e/mh-utils.elc
  ELC      mh-e/mh-xface.elc
  ELC      net/ange-ftp.elc
  ELC      net/browse-url.elc
  ELC      net/dbus.elc
  ELC      net/dictionary-connection.elc
  ELC      net/dictionary.elc
  ELC      net/dig.elc
  ELC      net/dns.elc
  ELC      net/eudc-bob.elc
  ELC      net/eudc-export.elc
  ELC      net/eudc-hotlist.elc
  ELC      net/eudc-vars.elc
  ELC      net/eudc.elc
  ELC      net/eudcb-bbdb.elc
  ELC      net/eudcb-ldap.elc
  ELC      net/eudcb-mab.elc
  ELC      net/eudcb-macos-contacts.elc
  ELC      net/eww.elc
  ELC      net/gnutls.elc
  ELC      net/goto-addr.elc
  ELC      net/hmac-def.elc
  ELC      net/hmac-md5.elc
  ELC      net/imap.elc
  ELC      net/ldap.elc
  ELC      net/mailcap.elc
  ELC      net/mairix.elc
  ELC      net/net-utils.elc
  ELC      net/netrc.elc
  ELC      net/network-stream.elc
  ELC      net/newst-backend.elc
  ELC      net/newst-plainview.elc
  ELC      net/newst-reader.elc
  ELC      net/newst-ticker.elc
  ELC      net/newst-treeview.elc
  ELC      net/newsticker.elc
  ELC      net/nsm.elc
  ELC      net/ntlm.elc
  ELC      net/pop3.elc
  ELC      net/puny.elc
  ELC      net/quickurl.elc
  ELC      net/rcirc.elc
  ELC      net/rfc2104.elc
  ELC      net/rlogin.elc
  ELC      net/sasl-cram.elc
  ELC      net/sasl-digest.elc
  ELC      net/sasl-ntlm.elc
  ELC      net/sasl-scram-rfc.elc
  ELC      net/sasl-scram-sha256.elc
  ELC      net/sasl.elc
  ELC      net/secrets.elc
  ELC      net/shr-color.elc
  ELC      net/shr.elc
  ELC      net/sieve-manage.elc
  ELC      net/sieve-mode.elc
  ELC      net/sieve.elc
  ELC      net/snmp-mode.elc
  ELC      net/soap-client.elc
  ELC      net/soap-inspect.elc
  ELC      net/socks.elc
  ELC      net/telnet.elc
  ELC      net/tramp-adb.elc
  ELC      net/tramp-archive.elc
  ELC      net/tramp-cache.elc
  ELC      net/tramp-cmds.elc
  ELC      net/tramp-compat.elc
  ELC      net/tramp-crypt.elc
  ELC      net/tramp-ftp.elc
  ELC      net/tramp-fuse.elc
  ELC      net/tramp-gvfs.elc
  ELC      net/tramp-integration.elc
  ELC      net/tramp-rclone.elc
  ELC      net/tramp-sh.elc
  ELC      net/tramp-smb.elc
  ELC      net/tramp-sshfs.elc
  ELC      net/tramp-sudoedit.elc
  ELC      net/tramp-uu.elc
  ELC      net/tramp.elc
  ELC      net/trampver.elc
  ELC      net/webjump.elc
  ELC      net/zeroconf.elc
  ELC      nxml/nxml-enc.elc
  ELC      nxml/nxml-maint.elc
  ELC      nxml/nxml-mode.elc
  ELC      nxml/nxml-ns.elc
  ELC      nxml/nxml-outln.elc
  ELC      nxml/nxml-parse.elc
  ELC      nxml/nxml-rap.elc
  ELC      nxml/nxml-util.elc
  ELC      nxml/rng-cmpct.elc
  ELC      nxml/rng-dt.elc
  ELC      nxml/rng-loc.elc
  ELC      nxml/rng-maint.elc
  ELC      nxml/rng-match.elc
  ELC      nxml/rng-nxml.elc
  ELC      nxml/rng-parse.elc
  ELC      nxml/rng-pttrn.elc
  ELC      nxml/rng-uri.elc
  ELC      nxml/rng-util.elc
  ELC      nxml/rng-valid.elc
  ELC      nxml/rng-xsd.elc
  ELC      nxml/xmltok.elc
  ELC      nxml/xsd-regexp.elc
  ELC      obsolete/abbrevlist.elc
  ELC      obsolete/assoc.elc
  ELC      obsolete/autoarg.elc
  ELC      obsolete/bruce.elc
  ELC      obsolete/cc-compat.elc
  ELC      obsolete/cl-compat.elc
  ELC      obsolete/cl.elc
  ELC      obsolete/complete.elc
  ELC      obsolete/crisp.elc
  ELC      obsolete/cust-print.elc
  ELC      obsolete/eieio-compat.elc
  ELC      obsolete/erc-hecomplete.elc
  ELC      obsolete/eudcb-ph.elc
  ELC      obsolete/fast-lock.elc
  ELC      obsolete/gs.elc
  ELC      obsolete/gulp.elc
  ELC      obsolete/html2text.elc
  ELC      obsolete/info-edit.elc
  ELC      obsolete/inversion.elc
  ELC      obsolete/iswitchb.elc
  ELC      obsolete/landmark.elc
  ELC      obsolete/lazy-lock.elc
  ELC      obsolete/longlines.elc
  ELC      obsolete/mailpost.elc
  ELC      obsolete/mantemp.elc
  ELC      obsolete/meese.elc
  ELC      obsolete/metamail.elc
  ELC      obsolete/mouse-sel.elc
  ELC      obsolete/nnir.elc
  ELC      obsolete/old-emacs-lock.elc
  ELC      obsolete/otodo-mode.elc
  ELC      obsolete/patcomp.elc
  ELC      obsolete/pc-mode.elc
  ELC      obsolete/pc-select.elc
  ELC      obsolete/pgg-def.elc
  ELC      obsolete/pgg-gpg.elc
  ELC      obsolete/pgg-parse.elc
  ELC      obsolete/pgg-pgp.elc
  ELC      obsolete/pgg-pgp5.elc
  ELC      obsolete/pgg.elc
  ELC      obsolete/rcompile.elc
  ELC      obsolete/rfc2368.elc
  ELC      obsolete/s-region.elc
  ELC      obsolete/sb-image.elc
  ELC      obsolete/sregex.elc
  ELC      obsolete/starttls.elc
  ELC      obsolete/sup-mouse.elc
  ELC      obsolete/terminal.elc
  ELC      obsolete/tls.elc
  ELC      obsolete/tpu-edt.elc
  ELC      obsolete/tpu-extras.elc
  ELC      obsolete/tpu-mapper.elc
  ELC      obsolete/url-ns.elc
  ELC      obsolete/vc-arch.elc
  ELC      obsolete/vi.elc
  ELC      obsolete/vip.elc
  ELC      obsolete/vt-control.elc
  ELC      obsolete/vt100-led.elc
  ELC      obsolete/ws-mode.elc
  ELC      obsolete/yow.elc
  ELC      org/ob-C.elc
  ELC      org/ob-R.elc
  ELC      org/ob-awk.elc
  ELC      org/ob-calc.elc
  ELC      org/ob-clojure.elc
  ELC      org/ob-comint.elc
  ELC      org/ob-core.elc
  ELC      org/ob-css.elc
  ELC      org/ob-ditaa.elc
  ELC      org/ob-dot.elc
  ELC      org/ob-emacs-lisp.elc
  ELC      org/ob-eshell.elc
  ELC      org/ob-eval.elc
  ELC      org/ob-exp.elc
  ELC      org/ob-forth.elc
  ELC      org/ob-fortran.elc
  ELC      org/ob-gnuplot.elc
  ELC      org/ob-groovy.elc
  ELC      org/ob-haskell.elc
  ELC      org/ob-java.elc
  ELC      org/ob-js.elc
  ELC      org/ob-julia.elc
  ELC      org/ob-latex.elc
  ELC      org/ob-lilypond.elc
  ELC      org/ob-lisp.elc
  ELC      org/ob-lob.elc
  ELC      org/ob-lua.elc
  ELC      org/ob-makefile.elc
  ELC      org/ob-matlab.elc
  ELC      org/ob-maxima.elc
  ELC      org/ob-ocaml.elc
  ELC      org/ob-octave.elc
  ELC      org/ob-org.elc
  ELC      org/ob-perl.elc
  ELC      org/ob-plantuml.elc
  ELC      org/ob-processing.elc
  ELC      org/ob-python.elc
  ELC      org/ob-ref.elc
  ELC      org/ob-ruby.elc
  ELC      org/ob-sass.elc
  ELC      org/ob-scheme.elc
  ELC      org/ob-screen.elc
  ELC      org/ob-sed.elc
  ELC      org/ob-shell.elc
  ELC      org/ob-sql.elc
  ELC      org/ob-sqlite.elc
  ELC      org/ob-table.elc
  ELC      org/ob-tangle.elc
  ELC      org/ob.elc
  ELC      org/oc-basic.elc
  ELC      org/oc-biblatex.elc
  ELC      org/oc-csl.elc
  ELC      org/oc-natbib.elc
  ELC      org/oc.elc
  ELC      org/ol-bbdb.elc
  ELC      org/ol-bibtex.elc
  ELC      org/ol-docview.elc
  ELC      org/ol-doi.elc
  ELC      org/ol-eshell.elc
  ELC      org/ol-eww.elc
  ELC      org/ol-gnus.elc
  ELC      org/ol-info.elc
  ELC      org/ol-irc.elc
  ELC      org/ol-man.elc
  ELC      org/ol-mhe.elc
  ELC      org/ol-rmail.elc
  ELC      org/ol-w3m.elc
  ELC      org/ol.elc
  ELC      org/org-agenda.elc
  ELC      org/org-archive.elc
  ELC      org/org-attach-git.elc
  ELC      org/org-attach.elc
  ELC      org/org-capture.elc
  ELC      org/org-clock.elc
  ELC      org/org-colview.elc
  ELC      org/org-compat.elc
  ELC      org/org-crypt.elc
  ELC      org/org-ctags.elc
  ELC      org/org-datetree.elc
  ELC      org/org-duration.elc
  ELC      org/org-element.elc
  ELC      org/org-entities.elc
  ELC      org/org-faces.elc
  ELC      org/org-feed.elc
  ELC      org/org-footnote.elc
  ELC      org/org-goto.elc
  ELC      org/org-habit.elc
  ELC      org/org-id.elc
  ELC      org/org-indent.elc
  ELC      org/org-inlinetask.elc
  ELC      org/org-keys.elc
  ELC      org/org-lint.elc
  ELC      org/org-list.elc
  ELC      org/org-macro.elc
  ELC      org/org-macs.elc
  ELC      org/org-mobile.elc
  ELC      org/org-mouse.elc
  ELC      org/org-num.elc
  ELC      org/org-pcomplete.elc
  ELC      org/org-plot.elc
  ELC      org/org-protocol.elc
  ELC      org/org-refile.elc
  ELC      org/org-src.elc
  ELC      org/org-table.elc
  ELC      org/org-tempo.elc
  ELC      org/org-timer.elc
  ELC      org/org.elc
  ELC      org/ox-ascii.elc
  ELC      org/ox-beamer.elc
  ELC      org/ox-html.elc
  ELC      org/ox-icalendar.elc
  ELC      org/ox-koma-letter.elc
  ELC      org/ox-latex.elc
  ELC      org/ox-man.elc
  ELC      org/ox-md.elc
  ELC      org/ox-odt.elc
  ELC      org/ox-org.elc
  ELC      org/ox-publish.elc
  ELC      org/ox-texinfo.elc
  ELC      org/ox.elc
  ELC      play/5x5.elc
  ELC      play/animate.elc
  ELC      play/blackbox.elc
  ELC      play/bubbles.elc
  ELC      play/cookie1.elc
  ELC      play/decipher.elc
  ELC      play/dissociate.elc
  ELC      play/doctor.elc
  ELC      play/dunnet.elc
  ELC      play/fortune.elc
  ELC      play/gamegrid.elc
  ELC      play/gametree.elc
  ELC      play/gomoku.elc
  ELC      play/handwrite.elc
  ELC      play/hanoi.elc
  ELC      play/life.elc
  ELC      play/morse.elc
  ELC      play/mpuz.elc
  ELC      play/pong.elc
  ELC      play/snake.elc
  ELC      play/solitaire.elc
  ELC      play/spook.elc
  ELC      play/studly.elc
  ELC      play/tetris.elc
  ELC      play/zone.elc
  ELC      progmodes/antlr-mode.elc
  ELC      progmodes/asm-mode.elc
  ELC      progmodes/autoconf.elc
  ELC      progmodes/bat-mode.elc
  ELC      progmodes/bug-reference.elc
  ELC      progmodes/cc-bytecomp.elc
  ELC      progmodes/cc-defs.elc
  ELC      progmodes/cc-vars.elc
  ELC      progmodes/cc-langs.elc
  ELC      progmodes/cc-engine.elc
  ELC      progmodes/cc-align.elc
  ELC      progmodes/cc-awk.elc
  ELC      progmodes/cc-cmds.elc
  ELC      progmodes/cc-fonts.elc
  ELC      progmodes/cc-guess.elc
  ELC      progmodes/cc-menus.elc
  ELC      progmodes/cc-styles.elc
  ELC      progmodes/cc-mode.elc
  ELC      progmodes/cfengine.elc
  ELC      progmodes/cl-font-lock.elc
  ELC      progmodes/cmacexp.elc
  ELC      progmodes/compile.elc
  ELC      progmodes/cperl-mode.elc
  ELC      progmodes/cpp.elc
  ELC      progmodes/cwarn.elc
  ELC      progmodes/dcl-mode.elc
  ELC      progmodes/ebnf-abn.elc
  ELC      progmodes/ebnf-bnf.elc
  ELC      progmodes/ebnf-dtd.elc
  ELC      progmodes/ebnf-ebx.elc
  ELC      progmodes/ebnf-iso.elc
  ELC      progmodes/ebnf-otz.elc
  ELC      progmodes/ebnf-yac.elc
  ELC      progmodes/ebnf2ps.elc
  ELC      progmodes/ebrowse.elc
  ELC      progmodes/erts-mode.elc
  ELC      progmodes/etags.elc
  ELC      progmodes/executable.elc
  ELC      progmodes/f90.elc
  ELC      progmodes/flymake-cc.elc
  ELC      progmodes/flymake-proc.elc
  ELC      progmodes/flymake.elc
  ELC      progmodes/fortran.elc
  ELC      progmodes/gdb-mi.elc
  ELC      progmodes/glasses.elc
  ELC      progmodes/grep.elc
  ELC      progmodes/gud.elc
  ELC      progmodes/hideif.elc
  ELC      progmodes/hideshow.elc
  ELC      progmodes/icon.elc
  ELC      progmodes/idlw-complete-structtag.elc
  ELC      progmodes/idlw-help.elc
  ELC      progmodes/idlw-shell.elc
  ELC      progmodes/idlw-toolbar.elc
  ELC      progmodes/idlwave.elc
  ELC      progmodes/inf-lisp.elc
  ELC      progmodes/js.elc
  ELC      progmodes/ld-script.elc
  ELC      progmodes/m4-mode.elc
  ELC      progmodes/make-mode.elc
  ELC      progmodes/meta-mode.elc
  ELC      progmodes/mixal-mode.elc
  ELC      progmodes/modula2.elc
  ELC      progmodes/octave.elc
  ELC      progmodes/opascal.elc
  ELC      progmodes/pascal.elc
  ELC      progmodes/perl-mode.elc
  ELC      progmodes/project.elc
  ELC      progmodes/prolog.elc
  ELC      progmodes/ps-mode.elc
  ELC      progmodes/python.elc
  ELC      progmodes/ruby-mode.elc
  ELC      progmodes/scheme.elc
  ELC      progmodes/sh-script.elc
  ELC      progmodes/simula.elc
  ELC      progmodes/sql.elc
  ELC      progmodes/subword.elc
  ELC      progmodes/tcl.elc
  ELC      progmodes/vera-mode.elc
  ELC      progmodes/verilog-mode.elc
  ELC      progmodes/vhdl-mode.elc
  ELC      progmodes/which-func.elc
  ELC      progmodes/xref.elc
  ELC      progmodes/xscheme.elc
  ELC      term/AT386.elc
  ELC      term/bobcat.elc
  ELC      term/cygwin.elc
  ELC      term/iris-ansi.elc
  ELC      term/konsole.elc
  ELC      term/linux.elc
  ELC      term/lk201.elc
  ELC      term/news.elc
  ELC      term/rxvt.elc
  ELC      term/screen.elc
  ELC      term/st.elc
  ELC      term/sun.elc
  ELC      term/tmux.elc
  ELC      term/tvi970.elc
  ELC      term/vt100.elc
  ELC      term/vt200.elc
  ELC      term/w32console.elc
  ELC      term/wyse50.elc
  ELC      term/xterm.elc
  ELC      textmodes/artist.elc
  ELC      textmodes/bib-mode.elc
  ELC      textmodes/bibtex-style.elc
  ELC      textmodes/bibtex.elc
  ELC      textmodes/conf-mode.elc
  ELC      textmodes/css-mode.elc
  ELC      textmodes/dns-mode.elc
  ELC      textmodes/emacs-news-mode.elc
  ELC      textmodes/enriched.elc
  ELC      textmodes/etc-authors-mode.elc
  ELC      textmodes/flyspell.elc
  ELC      textmodes/glyphless-mode.elc
  ELC      textmodes/ispell.elc
  ELC      textmodes/less-css-mode.elc
  ELC      textmodes/makeinfo.elc
  ELC      textmodes/mhtml-mode.elc
  ELC      textmodes/nroff-mode.elc
  ELC      textmodes/page-ext.elc
  ELC      textmodes/picture.elc
  ELC      textmodes/pixel-fill.elc
  ELC      textmodes/po.elc
  ELC      textmodes/refbib.elc
  ELC      textmodes/refer.elc
  ELC      textmodes/refill.elc
  ELC      textmodes/reftex-auc.elc
  ELC      textmodes/reftex-cite.elc
  ELC      textmodes/reftex-dcr.elc
  ELC      textmodes/reftex-global.elc
  ELC      textmodes/reftex-index.elc
  ELC      textmodes/reftex-parse.elc
  ELC      textmodes/reftex-ref.elc
  ELC      textmodes/reftex-sel.elc
  ELC      textmodes/reftex-toc.elc
  ELC      textmodes/reftex-vars.elc
  ELC      textmodes/reftex.elc
  ELC      textmodes/remember.elc
  ELC      textmodes/rst.elc
  ELC      textmodes/sgml-mode.elc
  ELC      textmodes/string-edit.elc
  ELC      textmodes/table.elc
  ELC      textmodes/tex-mode.elc
  ELC      textmodes/texinfmt.elc
  ELC      textmodes/texinfo.elc
  ELC      textmodes/texnfo-upd.elc
  ELC      textmodes/tildify.elc
  ELC      textmodes/two-column.elc
  ELC      textmodes/underline.elc
  ELC      textmodes/word-wrap-mode.elc
  ELC      url/url-about.elc
  ELC      url/url-auth.elc
  ELC      url/url-cache.elc
  ELC      url/url-cid.elc
  ELC      url/url-cookie.elc
  ELC      url/url-dav.elc
  ELC      url/url-dired.elc
  ELC      url/url-domsuf.elc
  ELC      url/url-expand.elc
  ELC      url/url-file.elc
  ELC      url/url-ftp.elc
  ELC      url/url-future.elc
  ELC      url/url-gw.elc
  ELC      url/url-handlers.elc
  ELC      url/url-history.elc
  ELC      url/url-http.elc
  ELC      url/url-imap.elc
  ELC      url/url-irc.elc
  ELC      url/url-ldap.elc
  ELC      url/url-mailto.elc
  ELC      url/url-methods.elc
  ELC      url/url-misc.elc
  ELC      url/url-news.elc
  ELC      url/url-nfs.elc
  ELC      url/url-parse.elc
  ELC      url/url-privacy.elc
  ELC      url/url-proxy.elc
  ELC      url/url-queue.elc
  ELC      url/url-tramp.elc
  ELC      url/url-util.elc
  ELC      url/url-vars.elc
  ELC      url/url.elc
  ELC      vc/add-log.elc
  ELC      vc/compare-w.elc
  ELC      vc/cvs-status.elc
  ELC      vc/diff-mode.elc
  ELC      vc/diff.elc
  ELC      vc/ediff-diff.elc
  ELC      vc/ediff-help.elc
  ELC      vc/ediff-init.elc
  ELC      vc/ediff-merg.elc
  ELC      vc/ediff-mult.elc
  ELC      vc/ediff-ptch.elc
  ELC      vc/ediff-util.elc
  ELC      vc/ediff-vers.elc
  ELC      vc/ediff-wind.elc
  ELC      vc/ediff.elc
  ELC      vc/emerge.elc
  ELC      vc/log-edit.elc
  ELC      vc/log-view.elc
  ELC      vc/pcvs-defs.elc
  ELC      vc/pcvs-info.elc
  ELC      vc/pcvs-parse.elc
  ELC      vc/pcvs-util.elc
  ELC      vc/pcvs.elc
  ELC      vc/smerge-mode.elc
  ELC      vc/vc-annotate.elc
  ELC      vc/vc-bzr.elc
  ELC      vc/vc-cvs.elc
  ELC      vc/vc-dav.elc
  ELC      vc/vc-dir.elc
  ELC      vc/vc-dispatcher.elc
  ELC      vc/vc-filewise.elc
  ELC      vc/vc-git.elc
  ELC      vc/vc-hg.elc
  ELC      vc/vc-mtn.elc
  ELC      vc/vc-rcs.elc
  ELC      vc/vc-sccs.elc
  ELC      vc/vc-src.elc
  ELC      vc/vc-svn.elc
  ELC      vc/vc.elc
  GEN      cus-load.el
  INFO     Scanning files for custom... 
  INFO     Scanning files for custom...10% 
  INFO     Scanning files for custom...20% 
  INFO     Scanning files for custom...30% 
  INFO     Scanning files for custom...40% 
  INFO     Scanning files for custom...50% 
  INFO     Scanning files for custom...60% 
  INFO     Scanning files for custom...70% 
  INFO     Scanning files for custom...80% 
  INFO     Scanning files for custom...90% 
  INFO     Scanning files for custom...100% 
  INFO     Scanning files for custom...done
  INFO     Generating ./cus-load.el...
  INFO     Generating ./cus-load.el...done
  GEN      finder-inf.el
  INFO     Scanning files for finder... 
  INFO     Scanning files for finder...17% 
  INFO     Scanning files for finder...38% 
  INFO     Scanning files for finder...56% 
  INFO     Scanning files for finder...71% 
  INFO     Scanning files for finder...88% 
  INFO     Scanning files for finder...done
/usr/bin/make -C doc/lispref info
../../build-aux/install-sh -c -d ../../info
  GEN      ../../info/elisp.info
/usr/bin/make -C doc/lispintro info
  GEN      ../../info/eintr.info
/usr/bin/make -C doc/emacs info
  GEN      ../../info/emacs.info
/usr/bin/make -C doc/misc info
  GEN      ../../info/auth.info
  GEN      ../../info/autotype.info
  GEN      ../../info/bovine.info
  GEN      ../../info/calc.info
  GEN      ../../info/ccmode.info
  GEN      ../../info/cl.info
  GEN      ../../info/dbus.info
  GEN      ../../info/dired-x.info
  GEN      ../../info/ebrowse.info
  GEN      ../../info/ede.info
  GEN      ../../info/ediff.info
  GEN      ../../info/edt.info
  GEN      ../../info/eieio.info
  GEN      ../../info/emacs-mime.info
  GEN      ../../info/epa.info
  GEN      ../../info/erc.info
  GEN      ../../info/ert.info
  GEN      ../../info/eshell.info
  GEN      ../../info/eudc.info
  GEN      ../../info/efaq.info
  GEN      ../../info/eww.info
  GEN      ../../info/flymake.info
  GEN      ../../info/forms.info
  GEN      ../../info/gnus.info
  GEN      ../../info/emacs-gnutls.info
  GEN      ../../info/htmlfontify.info
  GEN      ../../info/idlwave.info
  GEN      ../../info/ido.info
  GEN      ../../info/info.info
  GEN      ../../info/mairix-el.info
  GEN      ../../info/message.info
  GEN      ../../info/mh-e.info
  GEN      modus-themes.texi
  GEN      ../../info/modus-themes.info
  GEN      ../../info/newsticker.info
  GEN      ../../info/nxml-mode.info
  GEN      ../../info/octave-mode.info
  GEN      org.texi
  GEN      ../../info/org.info
  GEN      ../../info/pcl-cvs.info
  GEN      ../../info/pgg.info
  GEN      ../../info/rcirc.info
  GEN      ../../info/remember.info
  GEN      ../../info/reftex.info
  GEN      ../../info/sasl.info
  GEN      ../../info/sc.info
  GEN      ../../info/semantic.info
  GEN      ../../info/ses.info
  GEN      ../../info/sieve.info
  GEN      ../../info/smtpmail.info
  GEN      ../../info/speedbar.info
  GEN      ../../info/srecode.info
  GEN      ../../info/todo-mode.info
  GEN      ../../info/transient.info
  GEN      ../../info/tramp.info
  GEN      ../../info/url.info
  GEN      ../../info/vhdl-mode.info
  GEN      ../../info/vip.info
  GEN      ../../info/viper.info
  GEN      ../../info/vtable.info
  GEN      ../../info/widget.info
  GEN      ../../info/wisent.info
  GEN      ../../info/woman.info
  GEN      ../../info/efaq-w32.info
  GEN      info/dir
~/Desktop/emacs $ make install
/usr/bin/make -C lib all
make[1]: Nothing to be done for `all'.
/usr/bin/make -C lib-src all
make[1]: Nothing to be done for `all'.
/usr/bin/make -C src VCSWITNESS='$(srcdir)/../.git/logs/HEAD' BIN_DESTDIR=''/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/'' \
		 ELN_DESTDIR='/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Frameworks/' all
/usr/bin/make -C ../admin/charsets all
make[2]: Nothing to be done for `all'.
/usr/bin/make -C ../admin/unidata charscript.el
make[2]: Nothing to be done for `charscript.el'.
/usr/bin/make -C ../admin/unidata emoji-zwj.el
make[2]: Nothing to be done for `emoji-zwj.el'.
/usr/bin/make -C ../admin/unidata all EMACS="../../src/bootstrap-emacs"
make[2]: Nothing to be done for `all'.
/usr/bin/make -C ../admin/charsets cp51932.el
make[2]: Nothing to be done for `cp51932.el'.
/usr/bin/make -C ../admin/charsets eucjp-ms.el
make[2]: Nothing to be done for `eucjp-ms.el'.
/usr/bin/make -C ../nextstep all
/usr/bin/make -C ../src emacs
/usr/bin/make -C ../admin/charsets all
make[4]: Nothing to be done for `all'.
/usr/bin/make -C ../admin/unidata charscript.el
make[4]: Nothing to be done for `charscript.el'.
/usr/bin/make -C ../admin/unidata emoji-zwj.el
make[4]: Nothing to be done for `emoji-zwj.el'.
/usr/bin/make -C ../admin/unidata all EMACS="../../src/bootstrap-emacs"
make[4]: Nothing to be done for `all'.
/usr/bin/make -C ../admin/charsets cp51932.el
make[4]: Nothing to be done for `cp51932.el'.
/usr/bin/make -C ../admin/charsets eucjp-ms.el
make[4]: Nothing to be done for `eucjp-ms.el'.
/usr/bin/make -C lisp all
/usr/bin/make -C ../leim all EMACS="../src/emacs"
make[2]: Nothing to be done for `all'.
/usr/bin/make -C ../admin/grammars all EMACS="../../src/emacs"
make[2]: Nothing to be done for `all'.
make[2]: Nothing to be done for `compile-targets'.
make[2]: Nothing to be done for `compile-targets'.
/usr/bin/make -C doc/lispref info
make[1]: Nothing to be done for `info'.
/usr/bin/make -C doc/lispintro info
make[1]: Nothing to be done for `info'.
/usr/bin/make -C doc/emacs info
make[1]: Nothing to be done for `info'.
/usr/bin/make -C doc/misc info
make[1]: Nothing to be done for `info'.
umask 022; build-aux/install-sh -c -d "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/info"
unset CDPATH; \
	thisdir=`/bin/pwd`; \
	exp_infodir=`cd "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/info" && /bin/pwd`; \
	if [ "`cd ./info && /bin/pwd`" = "$exp_infodir" ]; then \
	  true; \
	else \
	   [ -f "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/info/dir" ] || \
	      [ ! -f ./info/dir ] || \
	      /usr/bin/install -c -m 644 ./info/dir "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/info/dir"; \
	   info_misc=`MAKEFLAGS= /usr/bin/make --no-print-directory -s -C doc/misc echo-info`; \
	   cd ./info ; \
	   for elt in emacs.info eintr.info elisp.info ${info_misc}; do \
	      for f in `ls $elt $elt-[1-9] $elt-[1-9][0-9] 2>/dev/null`; do \
	       (cd "${thisdir}"; \
	        /usr/bin/install -c -m 644 ./info/$f "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/info/$f"); \
	        [ -n "/usr/bin/gzip" ] || continue ; \
	        rm -f "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/info/$f.gz"; \
	        /usr/bin/gzip -9n "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/info/$f"; \
	      done; \
	     (cd "${thisdir}"; \
	      /usr/bin/install-info --info-dir="/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/info" "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/info/$elt"); \
	   done; \
	fi
umask 022; build-aux/install-sh -c -d "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/man/man1"
thisdir=`/bin/pwd`; \
	cd ./doc/man; \
	for page in *.1; do \
	  test "$page" = ChangeLog.1 && continue; \
	  dest=`echo "${page}" | sed -e 's/\.1$//' -e 's,x,x,'`.1; \
	  (cd "${thisdir}"; \
	   /usr/bin/install -c -m 644 ./doc/man/${page} "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/man/man1/${dest}"); \
	  [ -n "/usr/bin/gzip" ] || continue ; \
	  rm -f "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/man/man1/${dest}.gz"; \
	  /usr/bin/gzip -9n "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/man/man1/${dest}" || true; \
	done
umask 022 && build-aux/install-sh -c -d "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/include"
/usr/bin/install -c -m 644 src/emacs-module.h "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/include/emacs-module.h"
set "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/etc" "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/lisp" ; \
	unset CDPATH; \
	for installuser in ${LOGNAME} ${USERNAME} ${USER} `(id -u) 2> /dev/null`; do [ -n "${installuser}" ] && break ; done; installgroup=`(id -g) 2>/dev/null` && [ -n "$installgroup" ] && installuser=$installuser:$installgroup; \
	for dir in ./etc ./lisp ; do \
	  [ -d ${dir} ] || exit 1 ; \
	  dest="$1" ; shift ; \
	  if [ -d "${dest}" ]; then \
	    exp_dest=`cd "${dest}" && /bin/pwd`; \
	    [ "$exp_dest" = "`cd ${dir} && /bin/pwd`" ] && continue ; \
	  else true; \
	  fi; \
	  rm -rf "${dest}" ; \
	  umask 022; build-aux/install-sh -c -d "${dest}" ; \
	  printf 'Copying %s to %s...\n' "$dir" "$dest" ; \
	  (cd ${dir}; tar -chf - . ) \
	    | (cd "${dest}"; umask 022; \
	       tar -xvf - && cat > /dev/null) || exit 1; \
	  if [ "${dir}" = "./etc" ]; then \
	      rm -f "${dest}/DOC"* ; \
	      rm -f "${dest}/refcards"/*.aux "${dest}/refcards"/*.dvi; \
	      rm -f "${dest}/refcards"/*.log "${dest}/refcards"/*.in; \
	  else true; \
	  fi; \
	  (cd "${dest}" || exit 1; \
	    for subdir in `find . -type d -print` ; do \
	      chmod a+rx ${subdir} ; \
	      rm -f ${subdir}/.gitignore ; \
	      rm -f ${subdir}/.arch-inventory ; \
	      rm -f ${subdir}/.DS_Store ; \
	      rm -f ${subdir}/#* ; \
	      rm -f ${subdir}/.#* ; \
	      rm -f ${subdir}/*~ ; \
	      rm -f ${subdir}/*.orig ; \
	      rm -f ${subdir}/ChangeLog* ; \
	      [ "${dir}" != "./etc" ] && \
	        rm -f ${subdir}/[mM]akefile*[.-]in ${subdir}/[mM]akefile ; \
	    done ); \
	  find "${dest}" -exec chown ${installuser} {} ';' ;\
	done
Copying ./etc to /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/etc...
x ./
x ./AUTHORS
x ./CALC-NEWS
x ./ChangeLog.1
x ./charsets/
x ./compilation.txt
x ./COPYING
x ./DEBUG
x ./DEVEL.HUMOR
x ./DISTRIB
x ./DOC
x ./e/
x ./edt-user.el
x ./emacs-buffer.gdb
x ./emacs-mail.desktop
x ./emacs.desktop
x ./emacs.icon
x ./emacs.metainfo.xml
x ./emacs.service
x ./emacsclient-mail.desktop
x ./emacsclient.desktop
x ./enriched.txt
x ./ERC-NEWS
x ./ETAGS.EBNF
x ./ETAGS.README
x ./forms/
x ./future-bug
x ./gnus/
x ./gnus-tut.txt
x ./grep.txt
x ./HELLO
x ./HISTORY
x ./images/
x ./JOKES
x ./MACHINES
x ./MH-E-NEWS
x ./NEWS
x ./NEWS.1-17
x ./NEWS.18
x ./NEWS.19
x ./NEWS.20
x ./NEWS.21
x ./NEWS.22
x ./NEWS.23
x ./NEWS.24
x ./NEWS.25
x ./NEWS.26
x ./NEWS.27
x ./NEWS.28
x ./NEXTSTEP
x ./nxml/
x ./NXML-NEWS
x ./org/
x ./ORG-NEWS
x ./org.gnu.emacs.defaults.gschema.xml
x ./package-keyring.gpg
x ./PROBLEMS
x ./ps-prin0.ps
x ./ps-prin1.ps
x ./publicsuffix.txt
x ./README
x ./refcards/
x ./rgb.txt
x ./schema/
x ./ses-example.ses
x ./spook.lines
x ./srecode/
x ./TERMS
x ./themes/
x ./TODO
x ./tutorials/
x ./w32-feature.el
x ./yow.lines
x ./tutorials/TUTORIAL
x ./tutorials/TUTORIAL.bg
x ./tutorials/TUTORIAL.cn
x ./tutorials/TUTORIAL.cs
x ./tutorials/TUTORIAL.de
x ./tutorials/TUTORIAL.eo
x ./tutorials/TUTORIAL.es
x ./tutorials/TUTORIAL.fr
x ./tutorials/TUTORIAL.he
x ./tutorials/TUTORIAL.it
x ./tutorials/TUTORIAL.ja
x ./tutorials/TUTORIAL.ko
x ./tutorials/TUTORIAL.nl
x ./tutorials/TUTORIAL.pl
x ./tutorials/TUTORIAL.pt_BR
x ./tutorials/TUTORIAL.ro
x ./tutorials/TUTORIAL.ru
x ./tutorials/TUTORIAL.sk
x ./tutorials/TUTORIAL.sl
x ./tutorials/TUTORIAL.sv
x ./tutorials/TUTORIAL.th
x ./tutorials/TUTORIAL.translators
x ./tutorials/TUTORIAL.zh
x ./themes/adwaita-theme.el
x ./themes/deeper-blue-theme.el
x ./themes/dichromacy-theme.el
x ./themes/leuven-dark-theme.el
x ./themes/leuven-theme.el
x ./themes/light-blue-theme.el
x ./themes/manoj-dark-theme.el
x ./themes/misterioso-theme.el
x ./themes/modus-operandi-theme.el
x ./themes/modus-themes.el
x ./themes/modus-vivendi-theme.el
x ./themes/tango-dark-theme.el
x ./themes/tango-theme.el
x ./themes/tsdh-dark-theme.el
x ./themes/tsdh-light-theme.el
x ./themes/wheatgrass-theme.el
x ./themes/whiteboard-theme.el
x ./themes/wombat-theme.el
x ./srecode/c.srt
x ./srecode/cpp.srt
x ./srecode/default.srt
x ./srecode/doc-cpp.srt
x ./srecode/doc-default.srt
x ./srecode/doc-java.srt
x ./srecode/ede-autoconf.srt
x ./srecode/ede-make.srt
x ./srecode/el.srt
x ./srecode/getset-cpp.srt
x ./srecode/java.srt
x ./srecode/make.srt
x ./srecode/proj-test.srt
x ./srecode/template.srt
x ./srecode/test.srt
x ./srecode/texi.srt
x ./srecode/wisent.srt
x ./schema/calstbl.rnc
x ./schema/dbcalstbl.rnc
x ./schema/dbhier.rnc
x ./schema/dbnotn.rnc
x ./schema/dbpool.rnc
x ./schema/dbstart.rnc
x ./schema/docbook.rnc
x ./schema/locate.rnc
x ./schema/od-manifest-schema-v1.2-os.rnc
x ./schema/OpenDocument-schema-v1.3+libreoffice.rnc
x ./schema/OpenDocument-schema-v1.3.rnc
x ./schema/rdfxml.rnc
x ./schema/README
x ./schema/relaxng.rnc
x ./schema/schemas.xml
x ./schema/xhtml-applet.rnc
x ./schema/xhtml-attribs.rnc
x ./schema/xhtml-base.rnc
x ./schema/xhtml-bdo.rnc
x ./schema/xhtml-bform.rnc
x ./schema/xhtml-btable.rnc
x ./schema/xhtml-csismap.rnc
x ./schema/xhtml-datatypes.rnc
x ./schema/xhtml-edit.rnc
x ./schema/xhtml-events.rnc
x ./schema/xhtml-form.rnc
x ./schema/xhtml-frames.rnc
x ./schema/xhtml-hypertext.rnc
x ./schema/xhtml-iframe.rnc
x ./schema/xhtml-image.rnc
x ./schema/xhtml-inlstyle.rnc
x ./schema/xhtml-legacy.rnc
x ./schema/xhtml-link.rnc
x ./schema/xhtml-lst.rnc
x ./schema/xhtml-meta.rnc
x ./schema/xhtml-nameident.rnc
x ./schema/xhtml-object.rnc
x ./schema/xhtml-param.rnc
x ./schema/xhtml-pres.rnc
x ./schema/xhtml-ruby.rnc
x ./schema/xhtml-script.rnc
x ./schema/xhtml-ssismap.rnc
x ./schema/xhtml-struct.rnc
x ./schema/xhtml-table.rnc
x ./schema/xhtml-text.rnc
x ./schema/xhtml-tgt.rnc
x ./schema/xhtml-xstyle.rnc
x ./schema/xhtml.rnc
x ./schema/xslt.rnc
x ./refcards/calccard.tex
x ./refcards/cs-dired-ref.tex
x ./refcards/cs-refcard.tex
x ./refcards/cs-survival.tex
x ./refcards/de-refcard.tex
x ./refcards/dired-ref.tex
x ./refcards/emacsver.tex
x ./refcards/emacsver.tex.in
x ./refcards/fr-dired-ref.tex
x ./refcards/fr-refcard.tex
x ./refcards/fr-survival.tex
x ./refcards/gnus-logo.eps
x ./refcards/gnus-logo.pdf
x ./refcards/gnus-refcard.tex
x ./refcards/Makefile
x ./refcards/orgcard.tex
x ./refcards/pdflayout.sty
x ./refcards/pl-refcard.tex
x ./refcards/pt-br-refcard.tex
x ./refcards/README
x ./refcards/refcard.tex
x ./refcards/ru-refcard.tex
x ./refcards/sk-dired-ref.tex
x ./refcards/sk-refcard.tex
x ./refcards/sk-survival.tex
x ./refcards/survival.tex
x ./refcards/vipcard.tex
x ./refcards/viperCard.tex
x ./org/csl/
x ./org/OrgOdtContentTemplate.xml
x ./org/OrgOdtStyles.xml
x ./org/README
x ./org/csl/chicago-author-date.csl
x ./org/csl/locales-en-US.xml
x ./org/csl/README
x ./nxml/README
x ./nxml/test-invalid.xml
x ./nxml/test-valid.xml
x ./images/attach.pbm
x ./images/attach.xpm
x ./images/back-arrow.pbm
x ./images/back-arrow.xpm
x ./images/bookmark_add.pbm
x ./images/bookmark_add.xpm
x ./images/cancel.pbm
x ./images/cancel.xpm
x ./images/checkbox-mixed.svg
x ./images/checked.svg
x ./images/checked.xpm
x ./images/close.pbm
x ./images/close.xpm
x ./images/connect-to-url.pbm
x ./images/connect-to-url.xpm
x ./images/connect.pbm
x ./images/connect.xpm
x ./images/contact.pbm
x ./images/contact.xpm
x ./images/copy.pbm
x ./images/copy.xpm
x ./images/custom/
x ./images/cut.pbm
x ./images/cut.xpm
x ./images/data-save.pbm
x ./images/data-save.xpm
x ./images/delete.pbm
x ./images/delete.xpm
x ./images/describe.pbm
x ./images/describe.xpm
x ./images/diropen.pbm
x ./images/diropen.xpm
x ./images/disconnect.pbm
x ./images/disconnect.xpm
x ./images/down.svg
x ./images/exit.pbm
x ./images/exit.xpm
x ./images/ezimage/
x ./images/fwd-arrow.pbm
x ./images/fwd-arrow.xpm
x ./images/gnus/
x ./images/gnus.pbm
x ./images/gud/
x ./images/help.pbm
x ./images/help.xpm
x ./images/home.pbm
x ./images/home.xpm
x ./images/icons/
x ./images/index.pbm
x ./images/index.xpm
x ./images/info.pbm
x ./images/info.xpm
x ./images/jump-to.pbm
x ./images/jump-to.xpm
x ./images/left-arrow.pbm
x ./images/left-arrow.xpm
x ./images/left.svg
x ./images/letter.pbm
x ./images/letter.xpm
x ./images/lock-broken.pbm
x ./images/lock-broken.xpm
x ./images/lock-ok.pbm
x ./images/lock-ok.xpm
x ./images/lock.pbm
x ./images/lock.xpm
x ./images/low-color/
x ./images/mail/
x ./images/mh-logo.pbm
x ./images/mh-logo.xpm
x ./images/mpc/
x ./images/new.pbm
x ./images/new.xpm
x ./images/newsticker/
x ./images/next-node.pbm
x ./images/next-node.xpm
x ./images/next-page.pbm
x ./images/next-page.xpm
x ./images/open.pbm
x ./images/open.xpm
x ./images/paste.pbm
x ./images/paste.xpm
x ./images/preferences.pbm
x ./images/preferences.xpm
x ./images/prev-node.pbm
x ./images/prev-node.xpm
x ./images/print.pbm
x ./images/print.xpm
x ./images/radio-checked.svg
x ./images/radio-mixed.svg
x ./images/radio.svg
x ./images/README
x ./images/redo.pbm
x ./images/redo.xpm
x ./images/refresh.pbm
x ./images/refresh.xpm
x ./images/right-arrow.pbm
x ./images/right-arrow.xpm
x ./images/right.svg
x ./images/save.pbm
x ./images/save.xpm
x ./images/saveas.pbm
x ./images/saveas.xpm
x ./images/search-replace.pbm
x ./images/search-replace.xpm
x ./images/search.pbm
x ./images/search.xpm
x ./images/separator.pbm
x ./images/separator.xpm
x ./images/show.pbm
x ./images/show.xpm
x ./images/smilies/
x ./images/sort-ascending.pbm
x ./images/sort-ascending.xpm
x ./images/sort-column-ascending.pbm
x ./images/sort-column-ascending.xpm
x ./images/sort-criteria.pbm
x ./images/sort-criteria.xpm
x ./images/sort-descending.pbm
x ./images/sort-descending.xpm
x ./images/sort-row-ascending.pbm
x ./images/sort-row-ascending.xpm
x ./images/spell.pbm
x ./images/spell.xpm
x ./images/splash.bmp
x ./images/splash.pbm
x ./images/splash.png
x ./images/splash.svg
x ./images/splash.xpm
x ./images/tabs/
x ./images/tree-widget/
x ./images/unchecked.pbm
x ./images/unchecked.svg
x ./images/unchecked.xpm
x ./images/undo.pbm
x ./images/undo.xpm
x ./images/up-arrow.pbm
x ./images/up-arrow.xpm
x ./images/up-node.pbm
x ./images/up-node.xpm
x ./images/up.svg
x ./images/zoom-in.pbm
x ./images/zoom-in.xpm
x ./images/zoom-out.pbm
x ./images/zoom-out.xpm
x ./images/tree-widget/default/
x ./images/tree-widget/folder/
x ./images/tree-widget/folder/close.png
x ./images/tree-widget/folder/close.xpm
x ./images/tree-widget/folder/empty.png
x ./images/tree-widget/folder/empty.xpm
x ./images/tree-widget/folder/end-guide.png
x ./images/tree-widget/folder/end-guide.xpm
x ./images/tree-widget/folder/guide.png
x ./images/tree-widget/folder/guide.xpm
x ./images/tree-widget/folder/handle.png
x ./images/tree-widget/folder/handle.xpm
x ./images/tree-widget/folder/leaf.png
x ./images/tree-widget/folder/leaf.xpm
x ./images/tree-widget/folder/no-guide.png
x ./images/tree-widget/folder/no-guide.xpm
x ./images/tree-widget/folder/no-handle.png
x ./images/tree-widget/folder/no-handle.xpm
x ./images/tree-widget/folder/open.png
x ./images/tree-widget/folder/open.xpm
x ./images/tree-widget/folder/README
x ./images/tree-widget/default/close.png
x ./images/tree-widget/default/close.xpm
x ./images/tree-widget/default/empty.png
x ./images/tree-widget/default/empty.xpm
x ./images/tree-widget/default/end-guide.png
x ./images/tree-widget/default/end-guide.xpm
x ./images/tree-widget/default/guide.png
x ./images/tree-widget/default/guide.xpm
x ./images/tree-widget/default/handle.png
x ./images/tree-widget/default/handle.xpm
x ./images/tree-widget/default/leaf.png
x ./images/tree-widget/default/leaf.xpm
x ./images/tree-widget/default/no-guide.png
x ./images/tree-widget/default/no-guide.xpm
x ./images/tree-widget/default/no-handle.png
x ./images/tree-widget/default/no-handle.xpm
x ./images/tree-widget/default/open.png
x ./images/tree-widget/default/open.xpm
x ./images/tree-widget/default/README
x ./images/tabs/close.xpm
x ./images/tabs/left-arrow.xpm
x ./images/tabs/new.xpm
x ./images/tabs/README
x ./images/tabs/right-arrow.xpm
x ./images/smilies/blink.pbm
x ./images/smilies/blink.xpm
x ./images/smilies/braindamaged.pbm
x ./images/smilies/braindamaged.xpm
x ./images/smilies/cry.pbm
x ./images/smilies/cry.xpm
x ./images/smilies/dead.pbm
x ./images/smilies/dead.xpm
x ./images/smilies/evil.pbm
x ./images/smilies/evil.xpm
x ./images/smilies/forced.pbm
x ./images/smilies/forced.xpm
x ./images/smilies/frown.pbm
x ./images/smilies/frown.xpm
x ./images/smilies/grayscale/
x ./images/smilies/grin.pbm
x ./images/smilies/grin.xpm
x ./images/smilies/indifferent.pbm
x ./images/smilies/indifferent.xpm
x ./images/smilies/medium/
x ./images/smilies/README
x ./images/smilies/sad.pbm
x ./images/smilies/sad.xpm
x ./images/smilies/smile.pbm
x ./images/smilies/smile.xpm
x ./images/smilies/wry.pbm
x ./images/smilies/wry.xpm
x ./images/smilies/medium/blink.xpm
x ./images/smilies/medium/braindamaged.xpm
x ./images/smilies/medium/cry.xpm
x ./images/smilies/medium/dead.xpm
x ./images/smilies/medium/evil.xpm
x ./images/smilies/medium/forced.xpm
x ./images/smilies/medium/frown.xpm
x ./images/smilies/medium/grin.xpm
x ./images/smilies/medium/indifferent.xpm
x ./images/smilies/medium/README
x ./images/smilies/medium/reverse-smile.xpm
x ./images/smilies/medium/sad.xpm
x ./images/smilies/medium/smile.xpm
x ./images/smilies/medium/wry.xpm
x ./images/smilies/grayscale/blink.xpm
x ./images/smilies/grayscale/braindamaged.xpm
x ./images/smilies/grayscale/cry.xpm
x ./images/smilies/grayscale/dead.xpm
x ./images/smilies/grayscale/evil.xpm
x ./images/smilies/grayscale/forced.xpm
x ./images/smilies/grayscale/frown.xpm
x ./images/smilies/grayscale/grin.xpm
x ./images/smilies/grayscale/indifferent.xpm
x ./images/smilies/grayscale/README
x ./images/smilies/grayscale/reverse-smile.xpm
x ./images/smilies/grayscale/sad.xpm
x ./images/smilies/grayscale/smile.xpm
x ./images/smilies/grayscale/wry.xpm
x ./images/newsticker/browse-url.xpm
x ./images/newsticker/get-all.xpm
x ./images/newsticker/mark-immortal.xpm
x ./images/newsticker/mark-read.xpm
x ./images/newsticker/narrow.xpm
x ./images/newsticker/next-feed.xpm
x ./images/newsticker/next-item.xpm
x ./images/newsticker/prev-feed.xpm
x ./images/newsticker/prev-item.xpm
x ./images/newsticker/README
x ./images/newsticker/rss-feed.png
x ./images/newsticker/rss-feed.svg
x ./images/newsticker/update.xpm
x ./images/mpc/add.pbm
x ./images/mpc/add.xpm
x ./images/mpc/ffwd.pbm
x ./images/mpc/ffwd.xpm
x ./images/mpc/next.pbm
x ./images/mpc/next.xpm
x ./images/mpc/pause.pbm
x ./images/mpc/pause.xpm
x ./images/mpc/play.pbm
x ./images/mpc/play.xpm
x ./images/mpc/prev.pbm
x ./images/mpc/prev.xpm
x ./images/mpc/README
x ./images/mpc/rewind.pbm
x ./images/mpc/rewind.xpm
x ./images/mpc/stop.pbm
x ./images/mpc/stop.xpm
x ./images/mail/compose.pbm
x ./images/mail/compose.xpm
x ./images/mail/copy.pbm
x ./images/mail/copy.xpm
x ./images/mail/flag-for-followup.pbm
x ./images/mail/flag-for-followup.xpm
x ./images/mail/forward.pbm
x ./images/mail/forward.xpm
x ./images/mail/inbox.pbm
x ./images/mail/inbox.xpm
x ./images/mail/move.pbm
x ./images/mail/move.xpm
x ./images/mail/not-spam.pbm
x ./images/mail/not-spam.xpm
x ./images/mail/outbox.pbm
x ./images/mail/outbox.xpm
x ./images/mail/preview.pbm
x ./images/mail/preview.xpm
x ./images/mail/README
x ./images/mail/repack.pbm
x ./images/mail/repack.xpm
x ./images/mail/reply-all.pbm
x ./images/mail/reply-all.xpm
x ./images/mail/reply-from.pbm
x ./images/mail/reply-from.xpm
x ./images/mail/reply-to.pbm
x ./images/mail/reply-to.xpm
x ./images/mail/reply.pbm
x ./images/mail/reply.xpm
x ./images/mail/save-draft.pbm
x ./images/mail/save-draft.xpm
x ./images/mail/save.xpm
x ./images/mail/send.pbm
x ./images/mail/send.xpm
x ./images/mail/spam.xpm
x ./images/low-color/back-arrow.xpm
x ./images/low-color/copy.xpm
x ./images/low-color/cut.xpm
x ./images/low-color/fwd-arrow.xpm
x ./images/low-color/help.xpm
x ./images/low-color/home.xpm
x ./images/low-color/index.xpm
x ./images/low-color/jump-to.xpm
x ./images/low-color/left-arrow.xpm
x ./images/low-color/new.xpm
x ./images/low-color/next-node.xpm
x ./images/low-color/open.xpm
x ./images/low-color/paste.xpm
x ./images/low-color/preferences.xpm
x ./images/low-color/prev-node.xpm
x ./images/low-color/print.xpm
x ./images/low-color/README
x ./images/low-color/right-arrow.xpm
x ./images/low-color/save.xpm
x ./images/low-color/saveas.xpm
x ./images/low-color/search.xpm
x ./images/low-color/spell.xpm
x ./images/low-color/undo.xpm
x ./images/low-color/up-arrow.xpm
x ./images/low-color/up-node.xpm
x ./images/icons/allout-widgets/
x ./images/icons/hicolor/
x ./images/icons/README
x ./images/icons/hicolor/128x128/
x ./images/icons/hicolor/16x16/
x ./images/icons/hicolor/24x24/
x ./images/icons/hicolor/32x32/
x ./images/icons/hicolor/48x48/
x ./images/icons/hicolor/scalable/
x ./images/icons/hicolor/scalable/apps/
x ./images/icons/hicolor/scalable/mimetypes/
x ./images/icons/hicolor/scalable/mimetypes/emacs-document.svg
x ./images/icons/hicolor/scalable/mimetypes/emacs-document23.svg
x ./images/icons/hicolor/scalable/apps/emacs.ico
x ./images/icons/hicolor/scalable/apps/emacs.svg
x ./images/icons/hicolor/scalable/apps/emacs23.svg
x ./images/icons/hicolor/48x48/apps/
x ./images/icons/hicolor/48x48/apps/emacs.png
x ./images/icons/hicolor/48x48/apps/emacs22.png
x ./images/icons/hicolor/48x48/apps/emacs23.png
x ./images/icons/hicolor/32x32/apps/
x ./images/icons/hicolor/32x32/apps/emacs.png
x ./images/icons/hicolor/32x32/apps/emacs22.png
x ./images/icons/hicolor/32x32/apps/emacs23.png
x ./images/icons/hicolor/24x24/apps/
x ./images/icons/hicolor/24x24/apps/emacs.png
x ./images/icons/hicolor/24x24/apps/emacs22.png
x ./images/icons/hicolor/24x24/apps/emacs23.png
x ./images/icons/hicolor/16x16/apps/
x ./images/icons/hicolor/16x16/apps/emacs.png
x ./images/icons/hicolor/16x16/apps/emacs22.png
x ./images/icons/hicolor/16x16/apps/emacs23.png
x ./images/icons/hicolor/128x128/apps/
x ./images/icons/hicolor/128x128/apps/emacs.png
x ./images/icons/hicolor/128x128/apps/emacs23.png
x ./images/icons/allout-widgets/dark-bg/
x ./images/icons/allout-widgets/light-bg/
x ./images/icons/allout-widgets/light-bg/closed.png
x ./images/icons/allout-widgets/light-bg/closed.xpm
x ./images/icons/allout-widgets/light-bg/empty.png
x ./images/icons/allout-widgets/light-bg/empty.xpm
x ./images/icons/allout-widgets/light-bg/end-connector.png
x ./images/icons/allout-widgets/light-bg/end-connector.xpm
x ./images/icons/allout-widgets/light-bg/extender-connector.png
x ./images/icons/allout-widgets/light-bg/extender-connector.xpm
x ./images/icons/allout-widgets/light-bg/leaf.png
x ./images/icons/allout-widgets/light-bg/leaf.xpm
x ./images/icons/allout-widgets/light-bg/locked-encrypted.png
x ./images/icons/allout-widgets/light-bg/locked-encrypted.xpm
x ./images/icons/allout-widgets/light-bg/mid-connector.png
x ./images/icons/allout-widgets/light-bg/mid-connector.xpm
x ./images/icons/allout-widgets/light-bg/opened.png
x ./images/icons/allout-widgets/light-bg/opened.xpm
x ./images/icons/allout-widgets/light-bg/skip-descender.png
x ./images/icons/allout-widgets/light-bg/skip-descender.xpm
x ./images/icons/allout-widgets/light-bg/through-descender.png
x ./images/icons/allout-widgets/light-bg/through-descender.xpm
x ./images/icons/allout-widgets/light-bg/unlocked-encrypted.png
x ./images/icons/allout-widgets/light-bg/unlocked-encrypted.xpm
x ./images/icons/allout-widgets/dark-bg/closed.png
x ./images/icons/allout-widgets/dark-bg/closed.xpm
x ./images/icons/allout-widgets/dark-bg/empty.png
x ./images/icons/allout-widgets/dark-bg/empty.xpm
x ./images/icons/allout-widgets/dark-bg/end-connector.png
x ./images/icons/allout-widgets/dark-bg/end-connector.xpm
x ./images/icons/allout-widgets/dark-bg/extender-connector.png
x ./images/icons/allout-widgets/dark-bg/extender-connector.xpm
x ./images/icons/allout-widgets/dark-bg/leaf.png
x ./images/icons/allout-widgets/dark-bg/leaf.xpm
x ./images/icons/allout-widgets/dark-bg/locked-encrypted.png
x ./images/icons/allout-widgets/dark-bg/locked-encrypted.xpm
x ./images/icons/allout-widgets/dark-bg/mid-connector.png
x ./images/icons/allout-widgets/dark-bg/mid-connector.xpm
x ./images/icons/allout-widgets/dark-bg/opened.png
x ./images/icons/allout-widgets/dark-bg/opened.xpm
x ./images/icons/allout-widgets/dark-bg/skip-descender.png
x ./images/icons/allout-widgets/dark-bg/skip-descender.xpm
x ./images/icons/allout-widgets/dark-bg/through-descender.png
x ./images/icons/allout-widgets/dark-bg/through-descender.xpm
x ./images/icons/allout-widgets/dark-bg/unlocked-encrypted.png
x ./images/icons/allout-widgets/dark-bg/unlocked-encrypted.xpm
x ./images/gud/all.pbm
x ./images/gud/all.xpm
x ./images/gud/break.pbm
x ./images/gud/break.xpm
x ./images/gud/cont.pbm
x ./images/gud/cont.xpm
x ./images/gud/down.pbm
x ./images/gud/down.xpm
x ./images/gud/finish.pbm
x ./images/gud/finish.xpm
x ./images/gud/go.pbm
x ./images/gud/go.xpm
x ./images/gud/next.pbm
x ./images/gud/next.xpm
x ./images/gud/nexti.pbm
x ./images/gud/nexti.xpm
x ./images/gud/pp.pbm
x ./images/gud/pp.xpm
x ./images/gud/print.pbm
x ./images/gud/print.xpm
x ./images/gud/pstar.pbm
x ./images/gud/pstar.xpm
x ./images/gud/rcont.pbm
x ./images/gud/rcont.xpm
x ./images/gud/README
x ./images/gud/recstart.pbm
x ./images/gud/recstart.xpm
x ./images/gud/recstop.pbm
x ./images/gud/recstop.xpm
x ./images/gud/remove.pbm
x ./images/gud/remove.xpm
x ./images/gud/rfinish.pbm
x ./images/gud/rfinish.xpm
x ./images/gud/rnext.pbm
x ./images/gud/rnext.xpm
x ./images/gud/rnexti.pbm
x ./images/gud/rnexti.xpm
x ./images/gud/rstep.pbm
x ./images/gud/rstep.xpm
x ./images/gud/rstepi.pbm
x ./images/gud/rstepi.xpm
x ./images/gud/run.pbm
x ./images/gud/run.xpm
x ./images/gud/step.pbm
x ./images/gud/step.xpm
x ./images/gud/stepi.pbm
x ./images/gud/stepi.xpm
x ./images/gud/stop.pbm
x ./images/gud/stop.xpm
x ./images/gud/thread.pbm
x ./images/gud/thread.xpm
x ./images/gud/until.pbm
x ./images/gud/until.xpm
x ./images/gud/up.pbm
x ./images/gud/up.xpm
x ./images/gud/watch.pbm
x ./images/gud/watch.xpm
x ./images/gnus/catchup.pbm
x ./images/gnus/catchup.xpm
x ./images/gnus/cu-exit.pbm
x ./images/gnus/cu-exit.xpm
x ./images/gnus/describe-group.pbm
x ./images/gnus/describe-group.xpm
x ./images/gnus/exit-gnus.pbm
x ./images/gnus/exit-gnus.xpm
x ./images/gnus/exit-summ.pbm
x ./images/gnus/exit-summ.xpm
x ./images/gnus/followup.pbm
x ./images/gnus/followup.xpm
x ./images/gnus/fuwo.pbm
x ./images/gnus/fuwo.xpm
x ./images/gnus/get-news.pbm
x ./images/gnus/get-news.xpm
x ./images/gnus/gnntg.pbm
x ./images/gnus/gnntg.xpm
x ./images/gnus/gnus-pointer.xbm
x ./images/gnus/gnus-pointer.xpm
x ./images/gnus/gnus.png
x ./images/gnus/gnus.svg
x ./images/gnus/gnus.xbm
x ./images/gnus/gnus.xpm
x ./images/gnus/important.pbm
x ./images/gnus/important.xpm
x ./images/gnus/kill-group.pbm
x ./images/gnus/kill-group.xpm
x ./images/gnus/mail-reply.pbm
x ./images/gnus/mail-reply.xpm
x ./images/gnus/mail-send.pbm
x ./images/gnus/mail-send.xpm
x ./images/gnus/next-ur.pbm
x ./images/gnus/next-ur.xpm
x ./images/gnus/post.pbm
x ./images/gnus/post.xpm
x ./images/gnus/prev-ur.pbm
x ./images/gnus/prev-ur.xpm
x ./images/gnus/preview.xbm
x ./images/gnus/preview.xpm
x ./images/gnus/README
x ./images/gnus/receipt.pbm
x ./images/gnus/receipt.xpm
x ./images/gnus/reply-wo.pbm
x ./images/gnus/reply-wo.xpm
x ./images/gnus/reply.pbm
x ./images/gnus/reply.xpm
x ./images/gnus/rot13.pbm
x ./images/gnus/rot13.xpm
x ./images/gnus/save-aif.pbm
x ./images/gnus/save-aif.xpm
x ./images/gnus/save-art.pbm
x ./images/gnus/save-art.xpm
x ./images/gnus/subscribe.pbm
x ./images/gnus/subscribe.xpm
x ./images/gnus/toggle-subscription.pbm
x ./images/gnus/toggle-subscription.xpm
x ./images/gnus/unimportant.pbm
x ./images/gnus/unimportant.xpm
x ./images/gnus/unsubscribe.pbm
x ./images/gnus/unsubscribe.xpm
x ./images/gnus/uu-decode.pbm
x ./images/gnus/uu-decode.xpm
x ./images/gnus/uu-post.pbm
x ./images/gnus/uu-post.xpm
x ./images/ezimage/bits.pbm
x ./images/ezimage/bits.xpm
x ./images/ezimage/bitsbang.pbm
x ./images/ezimage/bitsbang.xpm
x ./images/ezimage/box-minus.pbm
x ./images/ezimage/box-minus.xpm
x ./images/ezimage/box-plus.pbm
x ./images/ezimage/box-plus.xpm
x ./images/ezimage/box.pbm
x ./images/ezimage/box.xpm
x ./images/ezimage/checkmark.pbm
x ./images/ezimage/checkmark.xpm
x ./images/ezimage/dir-minus.pbm
x ./images/ezimage/dir-minus.xpm
x ./images/ezimage/dir-plus.pbm
x ./images/ezimage/dir-plus.xpm
x ./images/ezimage/dir.pbm
x ./images/ezimage/dir.xpm
x ./images/ezimage/doc-minus.pbm
x ./images/ezimage/doc-minus.xpm
x ./images/ezimage/doc-plus.pbm
x ./images/ezimage/doc-plus.xpm
x ./images/ezimage/doc.pbm
x ./images/ezimage/doc.xpm
x ./images/ezimage/info.pbm
x ./images/ezimage/info.xpm
x ./images/ezimage/key.pbm
x ./images/ezimage/key.xpm
x ./images/ezimage/label.pbm
x ./images/ezimage/label.xpm
x ./images/ezimage/lock.pbm
x ./images/ezimage/lock.xpm
x ./images/ezimage/mail.pbm
x ./images/ezimage/mail.xpm
x ./images/ezimage/page-minus.pbm
x ./images/ezimage/page-minus.xpm
x ./images/ezimage/page-plus.pbm
x ./images/ezimage/page-plus.xpm
x ./images/ezimage/page.pbm
x ./images/ezimage/page.xpm
x ./images/ezimage/README
x ./images/ezimage/tag-gt.pbm
x ./images/ezimage/tag-gt.xpm
x ./images/ezimage/tag-minus.pbm
x ./images/ezimage/tag-minus.xpm
x ./images/ezimage/tag-plus.pbm
x ./images/ezimage/tag-plus.xpm
x ./images/ezimage/tag-type.pbm
x ./images/ezimage/tag-type.xpm
x ./images/ezimage/tag-v.pbm
x ./images/ezimage/tag-v.xpm
x ./images/ezimage/tag.pbm
x ./images/ezimage/tag.xpm
x ./images/ezimage/unlock.pbm
x ./images/ezimage/unlock.xpm
x ./images/custom/down-pushed.pbm
x ./images/custom/down-pushed.xpm
x ./images/custom/down.pbm
x ./images/custom/down.xpm
x ./images/custom/README
x ./images/custom/right-pushed.pbm
x ./images/custom/right-pushed.xpm
x ./images/custom/right.pbm
x ./images/custom/right.xpm
x ./gnus/gnus-setup.ast
x ./gnus/news-server.ast
x ./forms/forms-d2.dat
x ./forms/forms-d2.el
x ./forms/forms-pass.el
x ./forms/README
x ./e/eterm-color
x ./e/eterm-color.ti
x ./e/eterm-direct
x ./e/README
x ./charsets/8859-10.map
x ./charsets/8859-11.map
x ./charsets/8859-13.map
x ./charsets/8859-14.map
x ./charsets/8859-15.map
x ./charsets/8859-16.map
x ./charsets/8859-2.map
x ./charsets/8859-3.map
x ./charsets/8859-4.map
x ./charsets/8859-5.map
x ./charsets/8859-6.map
x ./charsets/8859-7.map
x ./charsets/8859-8.map
x ./charsets/8859-9.map
x ./charsets/ALTERNATIVNYJ.map
x ./charsets/BIG5-1.map
x ./charsets/BIG5-2.map
x ./charsets/BIG5-HKSCS.map
x ./charsets/BIG5.map
x ./charsets/CNS-1.map
x ./charsets/CNS-2.map
x ./charsets/CNS-3.map
x ./charsets/CNS-4.map
x ./charsets/CNS-5.map
x ./charsets/CNS-6.map
x ./charsets/CNS-7.map
x ./charsets/CNS-F.map
x ./charsets/CP10007.map
x ./charsets/CP1125.map
x ./charsets/CP1250.map
x ./charsets/CP1251.map
x ./charsets/CP1252.map
x ./charsets/CP1253.map
x ./charsets/CP1254.map
x ./charsets/CP1255.map
x ./charsets/CP1256.map
x ./charsets/CP1257.map
x ./charsets/CP1258.map
x ./charsets/CP720.map
x ./charsets/CP737.map
x ./charsets/CP775.map
x ./charsets/CP858.map
x ./charsets/CP932-2BYTE.map
x ./charsets/CP949-2BYTE.map
x ./charsets/EBCDICUK.map
x ./charsets/EBCDICUS.map
x ./charsets/GB180302.map
x ./charsets/GB180304.map
x ./charsets/GB2312.map
x ./charsets/GBK.map
x ./charsets/HP-ROMAN8.map
x ./charsets/IBM037.map
x ./charsets/IBM038.map
x ./charsets/IBM1004.map
x ./charsets/IBM1026.map
x ./charsets/IBM1047.map
x ./charsets/IBM256.map
x ./charsets/IBM273.map
x ./charsets/IBM274.map
x ./charsets/IBM275.map
x ./charsets/IBM277.map
x ./charsets/IBM278.map
x ./charsets/IBM280.map
x ./charsets/IBM281.map
x ./charsets/IBM284.map
x ./charsets/IBM285.map
x ./charsets/IBM290.map
x ./charsets/IBM297.map
x ./charsets/IBM420.map
x ./charsets/IBM423.map
x ./charsets/IBM424.map
x ./charsets/IBM437.map
x ./charsets/IBM500.map
x ./charsets/IBM850.map
x ./charsets/IBM851.map
x ./charsets/IBM852.map
x ./charsets/IBM855.map
x ./charsets/IBM856.map
x ./charsets/IBM857.map
x ./charsets/IBM860.map
x ./charsets/IBM861.map
x ./charsets/IBM862.map
x ./charsets/IBM863.map
x ./charsets/IBM864.map
x ./charsets/IBM865.map
x ./charsets/IBM866.map
x ./charsets/IBM868.map
x ./charsets/IBM869.map
x ./charsets/IBM870.map
x ./charsets/IBM871.map
x ./charsets/IBM874.map
x ./charsets/IBM875.map
x ./charsets/IBM880.map
x ./charsets/IBM891.map
x ./charsets/IBM903.map
x ./charsets/IBM904.map
x ./charsets/IBM905.map
x ./charsets/IBM918.map
x ./charsets/JISC6226.map
x ./charsets/JISX0201.map
x ./charsets/JISX0208.map
x ./charsets/JISX0212.map
x ./charsets/JISX2131.map
x ./charsets/JISX2132.map
x ./charsets/JISX213A.map
x ./charsets/JOHAB.map
x ./charsets/KA-ACADEMY.map
x ./charsets/KA-PS.map
x ./charsets/KOI-8.map
x ./charsets/KOI8-R.map
x ./charsets/KOI8-T.map
x ./charsets/KOI8-U.map
x ./charsets/KSC5601.map
x ./charsets/KSC5636.map
x ./charsets/MACINTOSH.map
x ./charsets/MIK.map
x ./charsets/MULE-ethiopic.map
x ./charsets/MULE-ipa.map
x ./charsets/MULE-is13194.map
x ./charsets/MULE-lviscii.map
x ./charsets/MULE-sisheng.map
x ./charsets/MULE-tibetan.map
x ./charsets/MULE-uviscii.map
x ./charsets/NEXTSTEP.map
x ./charsets/PTCP154.map
x ./charsets/README
x ./charsets/stdenc.map
x ./charsets/symbol.map
x ./charsets/TIS-620.map
x ./charsets/VISCII.map
x ./charsets/VSCII-2.map
x ./charsets/VSCII.map
Copying ./lisp to /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/lisp...
x ./
x ./abbrev.el
x ./abbrev.elc
x ./align.el
x ./align.elc
x ./allout-widgets.el
x ./allout-widgets.elc
x ./allout.el
x ./allout.elc
x ./ansi-color.el
x ./ansi-color.elc
x ./apropos.el
x ./apropos.elc
x ./arc-mode.el
x ./arc-mode.elc
x ./array.el
x ./array.elc
x ./auth-source-pass.el
x ./auth-source-pass.elc
x ./auth-source.el
x ./auth-source.elc
x ./autoinsert.el
x ./autoinsert.elc
x ./autorevert.el
x ./autorevert.elc
x ./avoid.el
x ./avoid.elc
x ./battery.el
x ./battery.elc
x ./bindings.el
x ./bindings.elc
x ./bookmark.el
x ./bookmark.elc
x ./bs.el
x ./bs.elc
x ./buff-menu.el
x ./buff-menu.elc
x ./button.el
x ./button.elc
x ./calc/
x ./calculator.el
x ./calculator.elc
x ./calendar/
x ./case-table.el
x ./case-table.elc
x ./cdl.el
x ./cdl.elc
x ./cedet/
x ./ChangeLog.1
x ./ChangeLog.10
x ./ChangeLog.11
x ./ChangeLog.12
x ./ChangeLog.13
x ./ChangeLog.14
x ./ChangeLog.15
x ./ChangeLog.16
x ./ChangeLog.17
x ./ChangeLog.2
x ./ChangeLog.3
x ./ChangeLog.4
x ./ChangeLog.5
x ./ChangeLog.6
x ./ChangeLog.7
x ./ChangeLog.8
x ./ChangeLog.9
x ./char-fold.el
x ./char-fold.elc
x ./chistory.el
x ./chistory.elc
x ./cmuscheme.el
x ./cmuscheme.elc
x ./color.el
x ./color.elc
x ./comint.el
x ./comint.elc
x ./completion.el
x ./completion.elc
x ./composite.el
x ./composite.elc
x ./COPYING
x ./cus-dep.el
x ./cus-dep.elc
x ./cus-edit.el
x ./cus-edit.elc
x ./cus-face.el
x ./cus-face.elc
x ./cus-load.el
x ./cus-start.el
x ./cus-start.elc
x ./cus-theme.el
x ./cus-theme.elc
x ./custom.el
x ./custom.elc
x ./dabbrev.el
x ./dabbrev.elc
x ./delim-col.el
x ./delim-col.elc
x ./delsel.el
x ./delsel.elc
x ./descr-text.el
x ./descr-text.elc
x ./desktop.el
x ./desktop.elc
x ./dframe.el
x ./dframe.elc
x ./dired-aux.el
x ./dired-aux.elc
x ./dired-loaddefs.el
x ./dired-x.el
x ./dired-x.elc
x ./dired.el
x ./dired.elc
x ./dirtrack.el
x ./dirtrack.elc
x ./disp-table.el
x ./disp-table.elc
x ./display-fill-column-indicator.el
x ./display-fill-column-indicator.elc
x ./display-line-numbers.el
x ./display-line-numbers.elc
x ./dnd.el
x ./dnd.elc
x ./doc-view.el
x ./doc-view.elc
x ./dom.el
x ./dom.elc
x ./dos-fns.el
x ./dos-fns.elc
x ./dos-vars.el
x ./dos-vars.elc
x ./dos-w32.el
x ./dos-w32.elc
x ./double.el
x ./double.elc
x ./dynamic-setting.el
x ./dynamic-setting.elc
x ./ebuff-menu.el
x ./ebuff-menu.elc
x ./echistory.el
x ./echistory.elc
x ./ecomplete.el
x ./ecomplete.elc
x ./edmacro.el
x ./edmacro.elc
x ./ehelp.el
x ./ehelp.elc
x ./elec-pair.el
x ./elec-pair.elc
x ./electric.el
x ./electric.elc
x ./elide-head.el
x ./elide-head.elc
x ./emacs-lisp/
x ./emacs-lock.el
x ./emacs-lock.elc
x ./emulation/
x ./env.el
x ./env.elc
x ./epa-dired.el
x ./epa-dired.elc
x ./epa-file.el
x ./epa-file.elc
x ./epa-hook.el
x ./epa-hook.elc
x ./epa-ks.el
x ./epa-ks.elc
x ./epa-mail.el
x ./epa-mail.elc
x ./epa.el
x ./epa.elc
x ./epg-config.el
x ./epg-config.elc
x ./epg.el
x ./epg.elc
x ./erc/
x ./eshell/
x ./expand.el
x ./expand.elc
x ./ezimage.el
x ./ezimage.elc
x ./face-remap.el
x ./face-remap.elc
x ./facemenu.el
x ./facemenu.elc
x ./faces.el
x ./faces.elc
x ./ffap.el
x ./ffap.elc
x ./filecache.el
x ./filecache.elc
x ./fileloop.el
x ./fileloop.elc
x ./filenotify.el
x ./filenotify.elc
x ./files-x.el
x ./files-x.elc
x ./files.el
x ./files.elc
x ./filesets.el
x ./filesets.elc
x ./find-cmd.el
x ./find-cmd.elc
x ./find-dired.el
x ./find-dired.elc
x ./find-file.el
x ./find-file.elc
x ./find-lisp.el
x ./find-lisp.elc
x ./finder-inf.el
x ./finder.el
x ./finder.elc
x ./flow-ctrl.el
x ./flow-ctrl.elc
x ./foldout.el
x ./foldout.elc
x ./follow.el
x ./follow.elc
x ./font-core.el
x ./font-core.elc
x ./font-lock.el
x ./font-lock.elc
x ./format-spec.el
x ./format-spec.elc
x ./format.el
x ./format.elc
x ./forms.el
x ./forms.elc
x ./frame.el
x ./frame.elc
x ./frameset.el
x ./frameset.elc
x ./fringe.el
x ./fringe.elc
x ./generic-x.el
x ./generic-x.elc
x ./gnus/
x ./help-at-pt.el
x ./help-at-pt.elc
x ./help-fns.el
x ./help-fns.elc
x ./help-macro.el
x ./help-macro.elc
x ./help-mode.el
x ./help-mode.elc
x ./help.el
x ./help.elc
x ./hex-util.el
x ./hex-util.elc
x ./hexl.el
x ./hexl.elc
x ./hfy-cmap.el
x ./hfy-cmap.elc
x ./hi-lock.el
x ./hi-lock.elc
x ./hilit-chg.el
x ./hilit-chg.elc
x ./hippie-exp.el
x ./hippie-exp.elc
x ./hl-line.el
x ./hl-line.elc
x ./htmlfontify-loaddefs.el
x ./htmlfontify.el
x ./htmlfontify.elc
x ./ibuf-ext.el
x ./ibuf-ext.elc
x ./ibuf-macs.el
x ./ibuf-macs.elc
x ./ibuffer-loaddefs.el
x ./ibuffer.el
x ./ibuffer.elc
x ./icomplete.el
x ./icomplete.elc
x ./ido.el
x ./ido.elc
x ./ielm.el
x ./ielm.elc
x ./iimage.el
x ./iimage.elc
x ./image/
x ./image-dired.el
x ./image-dired.elc
x ./image-file.el
x ./image-file.elc
x ./image-mode.el
x ./image-mode.elc
x ./image.el
x ./image.elc
x ./imenu.el
x ./imenu.elc
x ./indent.el
x ./indent.elc
x ./info-look.el
x ./info-look.elc
x ./info-xref.el
x ./info-xref.elc
x ./info.el
x ./info.elc
x ./informat.el
x ./informat.elc
x ./international/
x ./isearch.el
x ./isearch.elc
x ./isearchb.el
x ./isearchb.elc
x ./jit-lock.el
x ./jit-lock.elc
x ./jka-cmpr-hook.el
x ./jka-cmpr-hook.elc
x ./jka-compr.el
x ./jka-compr.elc
x ./json.el
x ./json.elc
x ./jsonrpc.el
x ./jsonrpc.elc
x ./kermit.el
x ./kermit.elc
x ./keymap.el
x ./keymap.elc
x ./kmacro.el
x ./kmacro.elc
x ./language/
x ./ldefs-boot.el
x ./leim/
x ./linum.el
x ./linum.elc
x ./loaddefs.el
x ./loaddefs.el~
x ./loadhist.el
x ./loadhist.elc
x ./loadup.el
x ./locate.el
x ./locate.elc
x ./lpr.el
x ./lpr.elc
x ./ls-lisp.el
x ./ls-lisp.elc
x ./macros.el
x ./macros.elc
x ./mail/
x ./Makefile
x ./Makefile.in
x ./makesum.el
x ./makesum.elc
x ./man.el
x ./man.elc
x ./master.el
x ./master.elc
x ./mb-depth.el
x ./mb-depth.elc
x ./md4.el
x ./md4.elc
x ./menu-bar.el
x ./menu-bar.elc
x ./mh-e/
x ./midnight.el
x ./midnight.elc
x ./minibuf-eldef.el
x ./minibuf-eldef.elc
x ./minibuffer.el
x ./minibuffer.elc
x ./misc.el
x ./misc.elc
x ./misearch.el
x ./misearch.elc
x ./mouse-copy.el
x ./mouse-copy.elc
x ./mouse-drag.el
x ./mouse-drag.elc
x ./mouse.el
x ./mouse.elc
x ./mpc.el
x ./mpc.elc
x ./msb.el
x ./msb.elc
x ./mwheel.el
x ./mwheel.elc
x ./net/
x ./newcomment.el
x ./newcomment.elc
x ./notifications.el
x ./notifications.elc
x ./novice.el
x ./novice.elc
x ./nxml/
x ./obarray.el
x ./obarray.elc
x ./obsolete/
x ./org/
x ./outline.el
x ./outline.elc
x ./paren.el
x ./paren.elc
x ./password-cache.el
x ./password-cache.elc
x ./pcmpl-cvs.el
x ./pcmpl-cvs.elc
x ./pcmpl-gnu.el
x ./pcmpl-gnu.elc
x ./pcmpl-linux.el
x ./pcmpl-linux.elc
x ./pcmpl-rpm.el
x ./pcmpl-rpm.elc
x ./pcmpl-unix.el
x ./pcmpl-unix.elc
x ./pcmpl-x.el
x ./pcmpl-x.elc
x ./pcomplete.el
x ./pcomplete.elc
x ./pixel-scroll.el
x ./pixel-scroll.elc
x ./play/
x ./plstore.el
x ./plstore.elc
x ./printing.el
x ./printing.elc
x ./proced.el
x ./proced.elc
x ./profiler.el
x ./profiler.elc
x ./progmodes/
x ./ps-bdf.el
x ./ps-bdf.elc
x ./ps-def.el
x ./ps-def.elc
x ./ps-mule.el
x ./ps-mule.elc
x ./ps-print-loaddefs.el
x ./ps-print.el
x ./ps-print.elc
x ./ps-samp.el
x ./ps-samp.elc
x ./README
x ./recentf.el
x ./recentf.elc
x ./rect.el
x ./rect.elc
x ./register.el
x ./register.elc
x ./registry.el
x ./registry.elc
x ./repeat.el
x ./repeat.elc
x ./replace.el
x ./replace.elc
x ./reposition.el
x ./reposition.elc
x ./reveal.el
x ./reveal.elc
x ./rfn-eshadow.el
x ./rfn-eshadow.elc
x ./rot13.el
x ./rot13.elc
x ./rtree.el
x ./rtree.elc
x ./ruler-mode.el
x ./ruler-mode.elc
x ./savehist.el
x ./savehist.elc
x ./saveplace.el
x ./saveplace.elc
x ./scroll-all.el
x ./scroll-all.elc
x ./scroll-bar.el
x ./scroll-bar.elc
x ./scroll-lock.el
x ./scroll-lock.elc
x ./select.el
x ./select.elc
x ./server.el
x ./server.elc
x ./ses.el
x ./ses.elc
x ./shadowfile.el
x ./shadowfile.elc
x ./shell.el
x ./shell.elc
x ./simple.el
x ./simple.elc
x ./skeleton.el
x ./skeleton.elc
x ./so-long.el
x ./so-long.elc
x ./sort.el
x ./sort.elc
x ./soundex.el
x ./soundex.elc
x ./speedbar.el
x ./speedbar.elc
x ./sqlite-mode.el
x ./sqlite-mode.elc
x ./sqlite.el
x ./sqlite.elc
x ./startup.el
x ./startup.elc
x ./strokes.el
x ./strokes.elc
x ./subdirs.el
x ./subr.el
x ./subr.elc
x ./svg.el
x ./svg.elc
x ./t-mouse.el
x ./t-mouse.elc
x ./tab-bar.el
x ./tab-bar.elc
x ./tab-line.el
x ./tab-line.elc
x ./tabify.el
x ./tabify.elc
x ./talk.el
x ./talk.elc
x ./tar-mode.el
x ./tar-mode.elc
x ./tempo.el
x ./tempo.elc
x ./term/
x ./term.el
x ./term.elc
x ./textmodes/
x ./thingatpt.el
x ./thingatpt.elc
x ./thread.el
x ./thread.elc
x ./thumbs.el
x ./thumbs.elc
x ./time-stamp.el
x ./time-stamp.elc
x ./time.el
x ./time.elc
x ./timezone.el
x ./timezone.elc
x ./tmm.el
x ./tmm.elc
x ./tool-bar.el
x ./tool-bar.elc
x ./tooltip.el
x ./tooltip.elc
x ./transient.el
x ./transient.elc
x ./tree-widget.el
x ./tree-widget.elc
x ./tutorial.el
x ./tutorial.elc
x ./type-break.el
x ./type-break.elc
x ./uniquify.el
x ./uniquify.elc
x ./url/
x ./userlock.el
x ./userlock.elc
x ./vc/
x ./vcursor.el
x ./vcursor.elc
x ./version.el
x ./version.elc
x ./view.el
x ./view.elc
x ./w32-fns.el
x ./w32-fns.elc
x ./w32-vars.el
x ./w32-vars.elc
x ./wdired.el
x ./wdired.elc
x ./whitespace.el
x ./whitespace.elc
x ./wid-browse.el
x ./wid-browse.elc
x ./wid-edit.el
x ./wid-edit.elc
x ./widget.el
x ./widget.elc
x ./windmove.el
x ./windmove.elc
x ./window.el
x ./window.elc
x ./winner.el
x ./winner.elc
x ./woman.el
x ./woman.elc
x ./x-dnd.el
x ./x-dnd.elc
x ./xdg.el
x ./xdg.elc
x ./xml.el
x ./xml.elc
x ./xt-mouse.el
x ./xt-mouse.elc
x ./xwidget.el
x ./xwidget.elc
x ./yank-media.el
x ./yank-media.elc
x ./vc/add-log.el
x ./vc/add-log.elc
x ./vc/compare-w.el
x ./vc/compare-w.elc
x ./vc/cvs-status.el
x ./vc/cvs-status.elc
x ./vc/diff-mode.el
x ./vc/diff-mode.elc
x ./vc/diff.el
x ./vc/diff.elc
x ./vc/ediff-diff.el
x ./vc/ediff-diff.elc
x ./vc/ediff-help.el
x ./vc/ediff-help.elc
x ./vc/ediff-hook.el
x ./vc/ediff-hook.elc
x ./vc/ediff-init.el
x ./vc/ediff-init.elc
x ./vc/ediff-merg.el
x ./vc/ediff-merg.elc
x ./vc/ediff-mult.el
x ./vc/ediff-mult.elc
x ./vc/ediff-ptch.el
x ./vc/ediff-ptch.elc
x ./vc/ediff-util.el
x ./vc/ediff-util.elc
x ./vc/ediff-vers.el
x ./vc/ediff-vers.elc
x ./vc/ediff-wind.el
x ./vc/ediff-wind.elc
x ./vc/ediff.el
x ./vc/ediff.elc
x ./vc/emerge.el
x ./vc/emerge.elc
x ./vc/log-edit.el
x ./vc/log-edit.elc
x ./vc/log-view.el
x ./vc/log-view.elc
x ./vc/pcvs-defs.el
x ./vc/pcvs-defs.elc
x ./vc/pcvs-info.el
x ./vc/pcvs-info.elc
x ./vc/pcvs-parse.el
x ./vc/pcvs-parse.elc
x ./vc/pcvs-util.el
x ./vc/pcvs-util.elc
x ./vc/pcvs.el
x ./vc/pcvs.elc
x ./vc/smerge-mode.el
x ./vc/smerge-mode.elc
x ./vc/vc-annotate.el
x ./vc/vc-annotate.elc
x ./vc/vc-bzr.el
x ./vc/vc-bzr.elc
x ./vc/vc-cvs.el
x ./vc/vc-cvs.elc
x ./vc/vc-dav.el
x ./vc/vc-dav.elc
x ./vc/vc-dir.el
x ./vc/vc-dir.elc
x ./vc/vc-dispatcher.el
x ./vc/vc-dispatcher.elc
x ./vc/vc-filewise.el
x ./vc/vc-filewise.elc
x ./vc/vc-git.el
x ./vc/vc-git.elc
x ./vc/vc-hg.el
x ./vc/vc-hg.elc
x ./vc/vc-hooks.el
x ./vc/vc-hooks.elc
x ./vc/vc-mtn.el
x ./vc/vc-mtn.elc
x ./vc/vc-rcs.el
x ./vc/vc-rcs.elc
x ./vc/vc-sccs.el
x ./vc/vc-sccs.elc
x ./vc/vc-src.el
x ./vc/vc-src.elc
x ./vc/vc-svn.el
x ./vc/vc-svn.elc
x ./vc/vc.el
x ./vc/vc.elc
x ./url/ChangeLog.1
x ./url/url-about.el
x ./url/url-about.elc
x ./url/url-auth.el
x ./url/url-auth.elc
x ./url/url-cache.el
x ./url/url-cache.elc
x ./url/url-cid.el
x ./url/url-cid.elc
x ./url/url-cookie.el
x ./url/url-cookie.elc
x ./url/url-dav.el
x ./url/url-dav.elc
x ./url/url-dired.el
x ./url/url-dired.elc
x ./url/url-domsuf.el
x ./url/url-domsuf.elc
x ./url/url-expand.el
x ./url/url-expand.elc
x ./url/url-file.el
x ./url/url-file.elc
x ./url/url-ftp.el
x ./url/url-ftp.elc
x ./url/url-future.el
x ./url/url-future.elc
x ./url/url-gw.el
x ./url/url-gw.elc
x ./url/url-handlers.el
x ./url/url-handlers.elc
x ./url/url-history.el
x ./url/url-history.elc
x ./url/url-http.el
x ./url/url-http.elc
x ./url/url-imap.el
x ./url/url-imap.elc
x ./url/url-irc.el
x ./url/url-irc.elc
x ./url/url-ldap.el
x ./url/url-ldap.elc
x ./url/url-mailto.el
x ./url/url-mailto.elc
x ./url/url-methods.el
x ./url/url-methods.elc
x ./url/url-misc.el
x ./url/url-misc.elc
x ./url/url-news.el
x ./url/url-news.elc
x ./url/url-nfs.el
x ./url/url-nfs.elc
x ./url/url-parse.el
x ./url/url-parse.elc
x ./url/url-privacy.el
x ./url/url-privacy.elc
x ./url/url-proxy.el
x ./url/url-proxy.elc
x ./url/url-queue.el
x ./url/url-queue.elc
x ./url/url-tramp.el
x ./url/url-tramp.elc
x ./url/url-util.el
x ./url/url-util.elc
x ./url/url-vars.el
x ./url/url-vars.elc
x ./url/url.el
x ./url/url.elc
x ./textmodes/artist.el
x ./textmodes/artist.elc
x ./textmodes/bib-mode.el
x ./textmodes/bib-mode.elc
x ./textmodes/bibtex-style.el
x ./textmodes/bibtex-style.elc
x ./textmodes/bibtex.el
x ./textmodes/bibtex.elc
x ./textmodes/conf-mode.el
x ./textmodes/conf-mode.elc
x ./textmodes/css-mode.el
x ./textmodes/css-mode.elc
x ./textmodes/dns-mode.el
x ./textmodes/dns-mode.elc
x ./textmodes/emacs-news-mode.el
x ./textmodes/emacs-news-mode.elc
x ./textmodes/enriched.el
x ./textmodes/enriched.elc
x ./textmodes/etc-authors-mode.el
x ./textmodes/etc-authors-mode.elc
x ./textmodes/fill.el
x ./textmodes/fill.elc
x ./textmodes/flyspell.el
x ./textmodes/flyspell.elc
x ./textmodes/glyphless-mode.el
x ./textmodes/glyphless-mode.elc
x ./textmodes/ispell.el
x ./textmodes/ispell.elc
x ./textmodes/less-css-mode.el
x ./textmodes/less-css-mode.elc
x ./textmodes/makeinfo.el
x ./textmodes/makeinfo.elc
x ./textmodes/mhtml-mode.el
x ./textmodes/mhtml-mode.elc
x ./textmodes/nroff-mode.el
x ./textmodes/nroff-mode.elc
x ./textmodes/page-ext.el
x ./textmodes/page-ext.elc
x ./textmodes/page.el
x ./textmodes/page.elc
x ./textmodes/paragraphs.el
x ./textmodes/paragraphs.elc
x ./textmodes/picture.el
x ./textmodes/picture.elc
x ./textmodes/pixel-fill.el
x ./textmodes/pixel-fill.elc
x ./textmodes/po.el
x ./textmodes/po.elc
x ./textmodes/refbib.el
x ./textmodes/refbib.elc
x ./textmodes/refer.el
x ./textmodes/refer.elc
x ./textmodes/refill.el
x ./textmodes/refill.elc
x ./textmodes/reftex-auc.el
x ./textmodes/reftex-auc.elc
x ./textmodes/reftex-cite.el
x ./textmodes/reftex-cite.elc
x ./textmodes/reftex-dcr.el
x ./textmodes/reftex-dcr.elc
x ./textmodes/reftex-global.el
x ./textmodes/reftex-global.elc
x ./textmodes/reftex-index.el
x ./textmodes/reftex-index.elc
x ./textmodes/reftex-loaddefs.el
x ./textmodes/reftex-parse.el
x ./textmodes/reftex-parse.elc
x ./textmodes/reftex-ref.el
x ./textmodes/reftex-ref.elc
x ./textmodes/reftex-sel.el
x ./textmodes/reftex-sel.elc
x ./textmodes/reftex-toc.el
x ./textmodes/reftex-toc.elc
x ./textmodes/reftex-vars.el
x ./textmodes/reftex-vars.elc
x ./textmodes/reftex.el
x ./textmodes/reftex.elc
x ./textmodes/remember.el
x ./textmodes/remember.elc
x ./textmodes/rst.el
x ./textmodes/rst.elc
x ./textmodes/sgml-mode.el
x ./textmodes/sgml-mode.elc
x ./textmodes/string-edit.el
x ./textmodes/string-edit.elc
x ./textmodes/table.el
x ./textmodes/table.elc
x ./textmodes/tex-mode.el
x ./textmodes/tex-mode.elc
x ./textmodes/texinfmt.el
x ./textmodes/texinfmt.elc
x ./textmodes/texinfo-loaddefs.el
x ./textmodes/texinfo.el
x ./textmodes/texinfo.elc
x ./textmodes/texnfo-upd.el
x ./textmodes/texnfo-upd.elc
x ./textmodes/text-mode.el
x ./textmodes/text-mode.elc
x ./textmodes/tildify.el
x ./textmodes/tildify.elc
x ./textmodes/two-column.el
x ./textmodes/two-column.elc
x ./textmodes/underline.el
x ./textmodes/underline.elc
x ./textmodes/word-wrap-mode.el
x ./textmodes/word-wrap-mode.elc
x ./term/AT386.el
x ./term/AT386.elc
x ./term/bobcat.el
x ./term/bobcat.elc
x ./term/common-win.el
x ./term/common-win.elc
x ./term/cygwin.el
x ./term/cygwin.elc
x ./term/haiku-win.el
x ./term/haiku-win.elc
x ./term/internal.el
x ./term/internal.elc
x ./term/iris-ansi.el
x ./term/iris-ansi.elc
x ./term/konsole.el
x ./term/konsole.elc
x ./term/linux.el
x ./term/linux.elc
x ./term/lk201.el
x ./term/lk201.elc
x ./term/news.el
x ./term/news.elc
x ./term/ns-win.el
x ./term/ns-win.elc
x ./term/pc-win.el
x ./term/pc-win.elc
x ./term/pgtk-win.el
x ./term/pgtk-win.elc
x ./term/README
x ./term/rxvt.el
x ./term/rxvt.elc
x ./term/screen.el
x ./term/screen.elc
x ./term/st.el
x ./term/st.elc
x ./term/sun.el
x ./term/sun.elc
x ./term/tmux.el
x ./term/tmux.elc
x ./term/tty-colors.el
x ./term/tty-colors.elc
x ./term/tvi970.el
x ./term/tvi970.elc
x ./term/vt100.el
x ./term/vt100.elc
x ./term/vt200.el
x ./term/vt200.elc
x ./term/w32-win.el
x ./term/w32-win.elc
x ./term/w32console.el
x ./term/w32console.elc
x ./term/wyse50.el
x ./term/wyse50.elc
x ./term/x-win.el
x ./term/x-win.elc
x ./term/xterm.el
x ./term/xterm.elc
x ./progmodes/antlr-mode.el
x ./progmodes/antlr-mode.elc
x ./progmodes/asm-mode.el
x ./progmodes/asm-mode.elc
x ./progmodes/autoconf.el
x ./progmodes/autoconf.elc
x ./progmodes/bat-mode.el
x ./progmodes/bat-mode.elc
x ./progmodes/bug-reference.el
x ./progmodes/bug-reference.elc
x ./progmodes/cc-align.el
x ./progmodes/cc-align.elc
x ./progmodes/cc-awk.el
x ./progmodes/cc-awk.elc
x ./progmodes/cc-bytecomp.el
x ./progmodes/cc-bytecomp.elc
x ./progmodes/cc-cmds.el
x ./progmodes/cc-cmds.elc
x ./progmodes/cc-defs.el
x ./progmodes/cc-defs.elc
x ./progmodes/cc-engine.el
x ./progmodes/cc-engine.elc
x ./progmodes/cc-fonts.el
x ./progmodes/cc-fonts.elc
x ./progmodes/cc-guess.el
x ./progmodes/cc-guess.elc
x ./progmodes/cc-langs.el
x ./progmodes/cc-langs.elc
x ./progmodes/cc-menus.el
x ./progmodes/cc-menus.elc
x ./progmodes/cc-mode.el
x ./progmodes/cc-mode.elc
x ./progmodes/cc-styles.el
x ./progmodes/cc-styles.elc
x ./progmodes/cc-vars.el
x ./progmodes/cc-vars.elc
x ./progmodes/cfengine.el
x ./progmodes/cfengine.elc
x ./progmodes/cl-font-lock.el
x ./progmodes/cl-font-lock.elc
x ./progmodes/cmacexp.el
x ./progmodes/cmacexp.elc
x ./progmodes/compile.el
x ./progmodes/compile.elc
x ./progmodes/cperl-mode.el
x ./progmodes/cperl-mode.elc
x ./progmodes/cpp.el
x ./progmodes/cpp.elc
x ./progmodes/cwarn.el
x ./progmodes/cwarn.elc
x ./progmodes/dcl-mode.el
x ./progmodes/dcl-mode.elc
x ./progmodes/ebnf-abn.el
x ./progmodes/ebnf-abn.elc
x ./progmodes/ebnf-bnf.el
x ./progmodes/ebnf-bnf.elc
x ./progmodes/ebnf-dtd.el
x ./progmodes/ebnf-dtd.elc
x ./progmodes/ebnf-ebx.el
x ./progmodes/ebnf-ebx.elc
x ./progmodes/ebnf-iso.el
x ./progmodes/ebnf-iso.elc
x ./progmodes/ebnf-otz.el
x ./progmodes/ebnf-otz.elc
x ./progmodes/ebnf-yac.el
x ./progmodes/ebnf-yac.elc
x ./progmodes/ebnf2ps.el
x ./progmodes/ebnf2ps.elc
x ./progmodes/ebrowse.el
x ./progmodes/ebrowse.elc
x ./progmodes/elisp-mode.el
x ./progmodes/elisp-mode.elc
x ./progmodes/erts-mode.el
x ./progmodes/erts-mode.elc
x ./progmodes/etags.el
x ./progmodes/etags.elc
x ./progmodes/executable.el
x ./progmodes/executable.elc
x ./progmodes/f90.el
x ./progmodes/f90.elc
x ./progmodes/flymake-cc.el
x ./progmodes/flymake-cc.elc
x ./progmodes/flymake-proc.el
x ./progmodes/flymake-proc.elc
x ./progmodes/flymake.el
x ./progmodes/flymake.elc
x ./progmodes/fortran.el
x ./progmodes/fortran.elc
x ./progmodes/gdb-mi.el
x ./progmodes/gdb-mi.elc
x ./progmodes/glasses.el
x ./progmodes/glasses.elc
x ./progmodes/grep.el
x ./progmodes/grep.elc
x ./progmodes/gud.el
x ./progmodes/gud.elc
x ./progmodes/hideif.el
x ./progmodes/hideif.elc
x ./progmodes/hideshow.el
x ./progmodes/hideshow.elc
x ./progmodes/icon.el
x ./progmodes/icon.elc
x ./progmodes/idlw-complete-structtag.el
x ./progmodes/idlw-complete-structtag.elc
x ./progmodes/idlw-help.el
x ./progmodes/idlw-help.elc
x ./progmodes/idlw-shell.el
x ./progmodes/idlw-shell.elc
x ./progmodes/idlw-toolbar.el
x ./progmodes/idlw-toolbar.elc
x ./progmodes/idlwave.el
x ./progmodes/idlwave.elc
x ./progmodes/inf-lisp.el
x ./progmodes/inf-lisp.elc
x ./progmodes/js.el
x ./progmodes/js.elc
x ./progmodes/ld-script.el
x ./progmodes/ld-script.elc
x ./progmodes/m4-mode.el
x ./progmodes/m4-mode.elc
x ./progmodes/make-mode.el
x ./progmodes/make-mode.elc
x ./progmodes/meta-mode.el
x ./progmodes/meta-mode.elc
x ./progmodes/mixal-mode.el
x ./progmodes/mixal-mode.elc
x ./progmodes/modula2.el
x ./progmodes/modula2.elc
x ./progmodes/octave.el
x ./progmodes/octave.elc
x ./progmodes/opascal.el
x ./progmodes/opascal.elc
x ./progmodes/pascal.el
x ./progmodes/pascal.elc
x ./progmodes/perl-mode.el
x ./progmodes/perl-mode.elc
x ./progmodes/prog-mode.el
x ./progmodes/prog-mode.elc
x ./progmodes/project.el
x ./progmodes/project.elc
x ./progmodes/prolog.el
x ./progmodes/prolog.elc
x ./progmodes/ps-mode.el
x ./progmodes/ps-mode.elc
x ./progmodes/python.el
x ./progmodes/python.elc
x ./progmodes/ruby-mode.el
x ./progmodes/ruby-mode.elc
x ./progmodes/scheme.el
x ./progmodes/scheme.elc
x ./progmodes/sh-script.el
x ./progmodes/sh-script.elc
x ./progmodes/simula.el
x ./progmodes/simula.elc
x ./progmodes/sql.el
x ./progmodes/sql.elc
x ./progmodes/subword.el
x ./progmodes/subword.elc
x ./progmodes/tcl.el
x ./progmodes/tcl.elc
x ./progmodes/vera-mode.el
x ./progmodes/vera-mode.elc
x ./progmodes/verilog-mode.el
x ./progmodes/verilog-mode.elc
x ./progmodes/vhdl-mode.el
x ./progmodes/vhdl-mode.elc
x ./progmodes/which-func.el
x ./progmodes/which-func.elc
x ./progmodes/xref.el
x ./progmodes/xref.elc
x ./progmodes/xscheme.el
x ./progmodes/xscheme.elc
x ./play/5x5.el
x ./play/5x5.elc
x ./play/animate.el
x ./play/animate.elc
x ./play/blackbox.el
x ./play/blackbox.elc
x ./play/bubbles.el
x ./play/bubbles.elc
x ./play/cookie1.el
x ./play/cookie1.elc
x ./play/decipher.el
x ./play/decipher.elc
x ./play/dissociate.el
x ./play/dissociate.elc
x ./play/doctor.el
x ./play/doctor.elc
x ./play/dunnet.el
x ./play/dunnet.elc
x ./play/fortune.el
x ./play/fortune.elc
x ./play/gamegrid.el
x ./play/gamegrid.elc
x ./play/gametree.el
x ./play/gametree.elc
x ./play/gomoku.el
x ./play/gomoku.elc
x ./play/handwrite.el
x ./play/handwrite.elc
x ./play/hanoi.el
x ./play/hanoi.elc
x ./play/life.el
x ./play/life.elc
x ./play/morse.el
x ./play/morse.elc
x ./play/mpuz.el
x ./play/mpuz.elc
x ./play/pong.el
x ./play/pong.elc
x ./play/snake.el
x ./play/snake.elc
x ./play/solitaire.el
x ./play/solitaire.elc
x ./play/spook.el
x ./play/spook.elc
x ./play/studly.el
x ./play/studly.elc
x ./play/tetris.el
x ./play/tetris.elc
x ./play/zone.el
x ./play/zone.elc
x ./org/ChangeLog.1
x ./org/ob-awk.el
x ./org/ob-awk.elc
x ./org/ob-C.el
x ./org/ob-C.elc
x ./org/ob-calc.el
x ./org/ob-calc.elc
x ./org/ob-clojure.el
x ./org/ob-clojure.elc
x ./org/ob-comint.el
x ./org/ob-comint.elc
x ./org/ob-core.el
x ./org/ob-core.elc
x ./org/ob-css.el
x ./org/ob-css.elc
x ./org/ob-ditaa.el
x ./org/ob-ditaa.elc
x ./org/ob-dot.el
x ./org/ob-dot.elc
x ./org/ob-emacs-lisp.el
x ./org/ob-emacs-lisp.elc
x ./org/ob-eshell.el
x ./org/ob-eshell.elc
x ./org/ob-eval.el
x ./org/ob-eval.elc
x ./org/ob-exp.el
x ./org/ob-exp.elc
x ./org/ob-forth.el
x ./org/ob-forth.elc
x ./org/ob-fortran.el
x ./org/ob-fortran.elc
x ./org/ob-gnuplot.el
x ./org/ob-gnuplot.elc
x ./org/ob-groovy.el
x ./org/ob-groovy.elc
x ./org/ob-haskell.el
x ./org/ob-haskell.elc
x ./org/ob-java.el
x ./org/ob-java.elc
x ./org/ob-js.el
x ./org/ob-js.elc
x ./org/ob-julia.el
x ./org/ob-julia.elc
x ./org/ob-latex.el
x ./org/ob-latex.elc
x ./org/ob-lilypond.el
x ./org/ob-lilypond.elc
x ./org/ob-lisp.el
x ./org/ob-lisp.elc
x ./org/ob-lob.el
x ./org/ob-lob.elc
x ./org/ob-lua.el
x ./org/ob-lua.elc
x ./org/ob-makefile.el
x ./org/ob-makefile.elc
x ./org/ob-matlab.el
x ./org/ob-matlab.elc
x ./org/ob-maxima.el
x ./org/ob-maxima.elc
x ./org/ob-ocaml.el
x ./org/ob-ocaml.elc
x ./org/ob-octave.el
x ./org/ob-octave.elc
x ./org/ob-org.el
x ./org/ob-org.elc
x ./org/ob-perl.el
x ./org/ob-perl.elc
x ./org/ob-plantuml.el
x ./org/ob-plantuml.elc
x ./org/ob-processing.el
x ./org/ob-processing.elc
x ./org/ob-python.el
x ./org/ob-python.elc
x ./org/ob-R.el
x ./org/ob-R.elc
x ./org/ob-ref.el
x ./org/ob-ref.elc
x ./org/ob-ruby.el
x ./org/ob-ruby.elc
x ./org/ob-sass.el
x ./org/ob-sass.elc
x ./org/ob-scheme.el
x ./org/ob-scheme.elc
x ./org/ob-screen.el
x ./org/ob-screen.elc
x ./org/ob-sed.el
x ./org/ob-sed.elc
x ./org/ob-shell.el
x ./org/ob-shell.elc
x ./org/ob-sql.el
x ./org/ob-sql.elc
x ./org/ob-sqlite.el
x ./org/ob-sqlite.elc
x ./org/ob-table.el
x ./org/ob-table.elc
x ./org/ob-tangle.el
x ./org/ob-tangle.elc
x ./org/ob.el
x ./org/ob.elc
x ./org/oc-basic.el
x ./org/oc-basic.elc
x ./org/oc-biblatex.el
x ./org/oc-biblatex.elc
x ./org/oc-csl.el
x ./org/oc-csl.elc
x ./org/oc-natbib.el
x ./org/oc-natbib.elc
x ./org/oc.el
x ./org/oc.elc
x ./org/ol-bbdb.el
x ./org/ol-bbdb.elc
x ./org/ol-bibtex.el
x ./org/ol-bibtex.elc
x ./org/ol-docview.el
x ./org/ol-docview.elc
x ./org/ol-doi.el
x ./org/ol-doi.elc
x ./org/ol-eshell.el
x ./org/ol-eshell.elc
x ./org/ol-eww.el
x ./org/ol-eww.elc
x ./org/ol-gnus.el
x ./org/ol-gnus.elc
x ./org/ol-info.el
x ./org/ol-info.elc
x ./org/ol-irc.el
x ./org/ol-irc.elc
x ./org/ol-man.el
x ./org/ol-man.elc
x ./org/ol-mhe.el
x ./org/ol-mhe.elc
x ./org/ol-rmail.el
x ./org/ol-rmail.elc
x ./org/ol-w3m.el
x ./org/ol-w3m.elc
x ./org/ol.el
x ./org/ol.elc
x ./org/org-agenda.el
x ./org/org-agenda.elc
x ./org/org-archive.el
x ./org/org-archive.elc
x ./org/org-attach-git.el
x ./org/org-attach-git.elc
x ./org/org-attach.el
x ./org/org-attach.elc
x ./org/org-capture.el
x ./org/org-capture.elc
x ./org/org-clock.el
x ./org/org-clock.elc
x ./org/org-colview.el
x ./org/org-colview.elc
x ./org/org-compat.el
x ./org/org-compat.elc
x ./org/org-crypt.el
x ./org/org-crypt.elc
x ./org/org-ctags.el
x ./org/org-ctags.elc
x ./org/org-datetree.el
x ./org/org-datetree.elc
x ./org/org-duration.el
x ./org/org-duration.elc
x ./org/org-element.el
x ./org/org-element.elc
x ./org/org-entities.el
x ./org/org-entities.elc
x ./org/org-faces.el
x ./org/org-faces.elc
x ./org/org-feed.el
x ./org/org-feed.elc
x ./org/org-footnote.el
x ./org/org-footnote.elc
x ./org/org-goto.el
x ./org/org-goto.elc
x ./org/org-habit.el
x ./org/org-habit.elc
x ./org/org-id.el
x ./org/org-id.elc
x ./org/org-indent.el
x ./org/org-indent.elc
x ./org/org-inlinetask.el
x ./org/org-inlinetask.elc
x ./org/org-install.el
x ./org/org-keys.el
x ./org/org-keys.elc
x ./org/org-lint.el
x ./org/org-lint.elc
x ./org/org-list.el
x ./org/org-list.elc
x ./org/org-loaddefs.el
x ./org/org-macro.el
x ./org/org-macro.elc
x ./org/org-macs.el
x ./org/org-macs.elc
x ./org/org-mobile.el
x ./org/org-mobile.elc
x ./org/org-mouse.el
x ./org/org-mouse.elc
x ./org/org-num.el
x ./org/org-num.elc
x ./org/org-pcomplete.el
x ./org/org-pcomplete.elc
x ./org/org-plot.el
x ./org/org-plot.elc
x ./org/org-protocol.el
x ./org/org-protocol.elc
x ./org/org-refile.el
x ./org/org-refile.elc
x ./org/org-src.el
x ./org/org-src.elc
x ./org/org-table.el
x ./org/org-table.elc
x ./org/org-tempo.el
x ./org/org-tempo.elc
x ./org/org-timer.el
x ./org/org-timer.elc
x ./org/org-version.el
x ./org/org.el
x ./org/org.elc
x ./org/ox-ascii.el
x ./org/ox-ascii.elc
x ./org/ox-beamer.el
x ./org/ox-beamer.elc
x ./org/ox-html.el
x ./org/ox-html.elc
x ./org/ox-icalendar.el
x ./org/ox-icalendar.elc
x ./org/ox-koma-letter.el
x ./org/ox-koma-letter.elc
x ./org/ox-latex.el
x ./org/ox-latex.elc
x ./org/ox-man.el
x ./org/ox-man.elc
x ./org/ox-md.el
x ./org/ox-md.elc
x ./org/ox-odt.el
x ./org/ox-odt.elc
x ./org/ox-org.el
x ./org/ox-org.elc
x ./org/ox-publish.el
x ./org/ox-publish.elc
x ./org/ox-texinfo.el
x ./org/ox-texinfo.elc
x ./org/ox.el
x ./org/ox.elc
x ./obsolete/abbrevlist.el
x ./obsolete/abbrevlist.elc
x ./obsolete/assoc.el
x ./obsolete/assoc.elc
x ./obsolete/autoarg.el
x ./obsolete/autoarg.elc
x ./obsolete/bruce.el
x ./obsolete/bruce.elc
x ./obsolete/cc-compat.el
x ./obsolete/cc-compat.elc
x ./obsolete/cl-compat.el
x ./obsolete/cl-compat.elc
x ./obsolete/cl.el
x ./obsolete/cl.elc
x ./obsolete/complete.el
x ./obsolete/complete.elc
x ./obsolete/crisp.el
x ./obsolete/crisp.elc
x ./obsolete/cust-print.el
x ./obsolete/cust-print.elc
x ./obsolete/eieio-compat.el
x ./obsolete/eieio-compat.elc
x ./obsolete/erc-hecomplete.el
x ./obsolete/erc-hecomplete.elc
x ./obsolete/eudcb-ph.el
x ./obsolete/eudcb-ph.elc
x ./obsolete/fast-lock.el
x ./obsolete/fast-lock.elc
x ./obsolete/gs.el
x ./obsolete/gs.elc
x ./obsolete/gulp.el
x ./obsolete/gulp.elc
x ./obsolete/html2text.el
x ./obsolete/html2text.elc
x ./obsolete/info-edit.el
x ./obsolete/info-edit.elc
x ./obsolete/inversion.el
x ./obsolete/inversion.elc
x ./obsolete/iswitchb.el
x ./obsolete/iswitchb.elc
x ./obsolete/landmark.el
x ./obsolete/landmark.elc
x ./obsolete/lazy-lock.el
x ./obsolete/lazy-lock.elc
x ./obsolete/longlines.el
x ./obsolete/longlines.elc
x ./obsolete/mailpost.el
x ./obsolete/mailpost.elc
x ./obsolete/mantemp.el
x ./obsolete/mantemp.elc
x ./obsolete/meese.el
x ./obsolete/meese.elc
x ./obsolete/messcompat.el
x ./obsolete/metamail.el
x ./obsolete/metamail.elc
x ./obsolete/mouse-sel.el
x ./obsolete/mouse-sel.elc
x ./obsolete/nnir.el
x ./obsolete/nnir.elc
x ./obsolete/old-emacs-lock.el
x ./obsolete/old-emacs-lock.elc
x ./obsolete/otodo-mode.el
x ./obsolete/otodo-mode.elc
x ./obsolete/patcomp.el
x ./obsolete/patcomp.elc
x ./obsolete/pc-mode.el
x ./obsolete/pc-mode.elc
x ./obsolete/pc-select.el
x ./obsolete/pc-select.elc
x ./obsolete/pgg-def.el
x ./obsolete/pgg-def.elc
x ./obsolete/pgg-gpg.el
x ./obsolete/pgg-gpg.elc
x ./obsolete/pgg-parse.el
x ./obsolete/pgg-parse.elc
x ./obsolete/pgg-pgp.el
x ./obsolete/pgg-pgp.elc
x ./obsolete/pgg-pgp5.el
x ./obsolete/pgg-pgp5.elc
x ./obsolete/pgg.el
x ./obsolete/pgg.elc
x ./obsolete/rcompile.el
x ./obsolete/rcompile.elc
x ./obsolete/rfc2368.el
x ./obsolete/rfc2368.elc
x ./obsolete/s-region.el
x ./obsolete/s-region.elc
x ./obsolete/sb-image.el
x ./obsolete/sb-image.elc
x ./obsolete/sregex.el
x ./obsolete/sregex.elc
x ./obsolete/starttls.el
x ./obsolete/starttls.elc
x ./obsolete/sup-mouse.el
x ./obsolete/sup-mouse.elc
x ./obsolete/terminal.el
x ./obsolete/terminal.elc
x ./obsolete/tls.el
x ./obsolete/tls.elc
x ./obsolete/tpu-edt.el
x ./obsolete/tpu-edt.elc
x ./obsolete/tpu-extras.el
x ./obsolete/tpu-extras.elc
x ./obsolete/tpu-mapper.el
x ./obsolete/tpu-mapper.elc
x ./obsolete/url-ns.el
x ./obsolete/url-ns.elc
x ./obsolete/vc-arch.el
x ./obsolete/vc-arch.elc
x ./obsolete/vi.el
x ./obsolete/vi.elc
x ./obsolete/vip.el
x ./obsolete/vip.elc
x ./obsolete/vt-control.el
x ./obsolete/vt-control.elc
x ./obsolete/vt100-led.el
x ./obsolete/vt100-led.elc
x ./obsolete/ws-mode.el
x ./obsolete/ws-mode.elc
x ./obsolete/yow.el
x ./obsolete/yow.elc
x ./nxml/nxml-enc.el
x ./nxml/nxml-enc.elc
x ./nxml/nxml-maint.el
x ./nxml/nxml-maint.elc
x ./nxml/nxml-mode.el
x ./nxml/nxml-mode.elc
x ./nxml/nxml-ns.el
x ./nxml/nxml-ns.elc
x ./nxml/nxml-outln.el
x ./nxml/nxml-outln.elc
x ./nxml/nxml-parse.el
x ./nxml/nxml-parse.elc
x ./nxml/nxml-rap.el
x ./nxml/nxml-rap.elc
x ./nxml/nxml-util.el
x ./nxml/nxml-util.elc
x ./nxml/rng-cmpct.el
x ./nxml/rng-cmpct.elc
x ./nxml/rng-dt.el
x ./nxml/rng-dt.elc
x ./nxml/rng-loc.el
x ./nxml/rng-loc.elc
x ./nxml/rng-maint.el
x ./nxml/rng-maint.elc
x ./nxml/rng-match.el
x ./nxml/rng-match.elc
x ./nxml/rng-nxml.el
x ./nxml/rng-nxml.elc
x ./nxml/rng-parse.el
x ./nxml/rng-parse.elc
x ./nxml/rng-pttrn.el
x ./nxml/rng-pttrn.elc
x ./nxml/rng-uri.el
x ./nxml/rng-uri.elc
x ./nxml/rng-util.el
x ./nxml/rng-util.elc
x ./nxml/rng-valid.el
x ./nxml/rng-valid.elc
x ./nxml/rng-xsd.el
x ./nxml/rng-xsd.elc
x ./nxml/xmltok.el
x ./nxml/xmltok.elc
x ./nxml/xsd-regexp.el
x ./nxml/xsd-regexp.elc
x ./net/ange-ftp.el
x ./net/ange-ftp.elc
x ./net/browse-url.el
x ./net/browse-url.elc
x ./net/dbus.el
x ./net/dbus.elc
x ./net/dictionary-connection.el
x ./net/dictionary-connection.elc
x ./net/dictionary.el
x ./net/dictionary.elc
x ./net/dig.el
x ./net/dig.elc
x ./net/dns.el
x ./net/dns.elc
x ./net/eudc-bob.el
x ./net/eudc-bob.elc
x ./net/eudc-export.el
x ./net/eudc-export.elc
x ./net/eudc-hotlist.el
x ./net/eudc-hotlist.elc
x ./net/eudc-vars.el
x ./net/eudc-vars.elc
x ./net/eudc.el
x ./net/eudc.elc
x ./net/eudcb-bbdb.el
x ./net/eudcb-bbdb.elc
x ./net/eudcb-ldap.el
x ./net/eudcb-ldap.elc
x ./net/eudcb-mab.el
x ./net/eudcb-mab.elc
x ./net/eudcb-macos-contacts.el
x ./net/eudcb-macos-contacts.elc
x ./net/eww.el
x ./net/eww.elc
x ./net/gnutls.el
x ./net/gnutls.elc
x ./net/goto-addr.el
x ./net/goto-addr.elc
x ./net/hmac-def.el
x ./net/hmac-def.elc
x ./net/hmac-md5.el
x ./net/hmac-md5.elc
x ./net/imap.el
x ./net/imap.elc
x ./net/ldap.el
x ./net/ldap.elc
x ./net/mailcap.el
x ./net/mailcap.elc
x ./net/mairix.el
x ./net/mairix.elc
x ./net/net-utils.el
x ./net/net-utils.elc
x ./net/netrc.el
x ./net/netrc.elc
x ./net/network-stream.el
x ./net/network-stream.elc
x ./net/newst-backend.el
x ./net/newst-backend.elc
x ./net/newst-plainview.el
x ./net/newst-plainview.elc
x ./net/newst-reader.el
x ./net/newst-reader.elc
x ./net/newst-ticker.el
x ./net/newst-ticker.elc
x ./net/newst-treeview.el
x ./net/newst-treeview.elc
x ./net/newsticker.el
x ./net/newsticker.elc
x ./net/nsm.el
x ./net/nsm.elc
x ./net/ntlm.el
x ./net/ntlm.elc
x ./net/pop3.el
x ./net/pop3.elc
x ./net/puny.el
x ./net/puny.elc
x ./net/quickurl.el
x ./net/quickurl.elc
x ./net/rcirc.el
x ./net/rcirc.elc
x ./net/rfc2104.el
x ./net/rfc2104.elc
x ./net/rlogin.el
x ./net/rlogin.elc
x ./net/sasl-cram.el
x ./net/sasl-cram.elc
x ./net/sasl-digest.el
x ./net/sasl-digest.elc
x ./net/sasl-ntlm.el
x ./net/sasl-ntlm.elc
x ./net/sasl-scram-rfc.el
x ./net/sasl-scram-rfc.elc
x ./net/sasl-scram-sha256.el
x ./net/sasl-scram-sha256.elc
x ./net/sasl.el
x ./net/sasl.elc
x ./net/secrets.el
x ./net/secrets.elc
x ./net/shr-color.el
x ./net/shr-color.elc
x ./net/shr.el
x ./net/shr.elc
x ./net/sieve-manage.el
x ./net/sieve-manage.elc
x ./net/sieve-mode.el
x ./net/sieve-mode.elc
x ./net/sieve.el
x ./net/sieve.elc
x ./net/snmp-mode.el
x ./net/snmp-mode.elc
x ./net/soap-client.el
x ./net/soap-client.elc
x ./net/soap-inspect.el
x ./net/soap-inspect.elc
x ./net/socks.el
x ./net/socks.elc
x ./net/telnet.el
x ./net/telnet.elc
x ./net/tramp-adb.el
x ./net/tramp-adb.elc
x ./net/tramp-archive.el
x ./net/tramp-archive.elc
x ./net/tramp-cache.el
x ./net/tramp-cache.elc
x ./net/tramp-cmds.el
x ./net/tramp-cmds.elc
x ./net/tramp-compat.el
x ./net/tramp-compat.elc
x ./net/tramp-crypt.el
x ./net/tramp-crypt.elc
x ./net/tramp-ftp.el
x ./net/tramp-ftp.elc
x ./net/tramp-fuse.el
x ./net/tramp-fuse.elc
x ./net/tramp-gvfs.el
x ./net/tramp-gvfs.elc
x ./net/tramp-integration.el
x ./net/tramp-integration.elc
x ./net/tramp-loaddefs.el
x ./net/tramp-loaddefs.el~
x ./net/tramp-rclone.el
x ./net/tramp-rclone.elc
x ./net/tramp-sh.el
x ./net/tramp-sh.elc
x ./net/tramp-smb.el
x ./net/tramp-smb.elc
x ./net/tramp-sshfs.el
x ./net/tramp-sshfs.elc
x ./net/tramp-sudoedit.el
x ./net/tramp-sudoedit.elc
x ./net/tramp-uu.el
x ./net/tramp-uu.elc
x ./net/tramp.el
x ./net/tramp.elc
x ./net/trampver.el
x ./net/trampver.elc
x ./net/webjump.el
x ./net/webjump.elc
x ./net/zeroconf.el
x ./net/zeroconf.elc
x ./mh-e/ChangeLog.1
x ./mh-e/ChangeLog.2
x ./mh-e/mh-acros.el
x ./mh-e/mh-alias.el
x ./mh-e/mh-alias.elc
x ./mh-e/mh-buffers.el
x ./mh-e/mh-buffers.elc
x ./mh-e/mh-comp.el
x ./mh-e/mh-comp.elc
x ./mh-e/mh-compat.el
x ./mh-e/mh-compat.elc
x ./mh-e/mh-e.el
x ./mh-e/mh-e.elc
x ./mh-e/mh-folder.el
x ./mh-e/mh-folder.elc
x ./mh-e/mh-funcs.el
x ./mh-e/mh-funcs.elc
x ./mh-e/mh-gnus.el
x ./mh-e/mh-gnus.elc
x ./mh-e/mh-identity.el
x ./mh-e/mh-identity.elc
x ./mh-e/mh-inc.el
x ./mh-e/mh-inc.elc
x ./mh-e/mh-junk.el
x ./mh-e/mh-junk.elc
x ./mh-e/mh-letter.el
x ./mh-e/mh-letter.elc
x ./mh-e/mh-limit.el
x ./mh-e/mh-limit.elc
x ./mh-e/mh-loaddefs.el
x ./mh-e/mh-loaddefs.el~
x ./mh-e/mh-mime.el
x ./mh-e/mh-mime.elc
x ./mh-e/mh-print.el
x ./mh-e/mh-print.elc
x ./mh-e/mh-scan.el
x ./mh-e/mh-scan.elc
x ./mh-e/mh-search.el
x ./mh-e/mh-search.elc
x ./mh-e/mh-seq.el
x ./mh-e/mh-seq.elc
x ./mh-e/mh-show.el
x ./mh-e/mh-show.elc
x ./mh-e/mh-speed.el
x ./mh-e/mh-speed.elc
x ./mh-e/mh-thread.el
x ./mh-e/mh-thread.elc
x ./mh-e/mh-tool-bar.el
x ./mh-e/mh-tool-bar.elc
x ./mh-e/mh-utils.el
x ./mh-e/mh-utils.elc
x ./mh-e/mh-xface.el
x ./mh-e/mh-xface.elc
x ./mail/binhex.el
x ./mail/binhex.elc
x ./mail/blessmail.el
x ./mail/emacsbug.el
x ./mail/emacsbug.elc
x ./mail/feedmail.el
x ./mail/feedmail.elc
x ./mail/flow-fill.el
x ./mail/flow-fill.elc
x ./mail/footnote.el
x ./mail/footnote.elc
x ./mail/hashcash.el
x ./mail/hashcash.elc
x ./mail/ietf-drums-date.el
x ./mail/ietf-drums-date.elc
x ./mail/ietf-drums.el
x ./mail/ietf-drums.elc
x ./mail/mail-extr.el
x ./mail/mail-extr.elc
x ./mail/mail-hist.el
x ./mail/mail-hist.elc
x ./mail/mail-parse.el
x ./mail/mail-parse.elc
x ./mail/mail-prsvr.el
x ./mail/mail-prsvr.elc
x ./mail/mail-utils.el
x ./mail/mail-utils.elc
x ./mail/mailabbrev.el
x ./mail/mailabbrev.elc
x ./mail/mailalias.el
x ./mail/mailalias.elc
x ./mail/mailclient.el
x ./mail/mailclient.elc
x ./mail/mailheader.el
x ./mail/mailheader.elc
x ./mail/mspools.el
x ./mail/mspools.elc
x ./mail/qp.el
x ./mail/qp.elc
x ./mail/reporter.el
x ./mail/reporter.elc
x ./mail/rfc2045.el
x ./mail/rfc2045.elc
x ./mail/rfc2047.el
x ./mail/rfc2047.elc
x ./mail/rfc2231.el
x ./mail/rfc2231.elc
x ./mail/rfc6068.el
x ./mail/rfc6068.elc
x ./mail/rfc822.el
x ./mail/rfc822.elc
x ./mail/rmail-loaddefs.el
x ./mail/rmail-spam-filter.el
x ./mail/rmail-spam-filter.elc
x ./mail/rmail.el
x ./mail/rmail.elc
x ./mail/rmailedit.el
x ./mail/rmailedit.elc
x ./mail/rmailkwd.el
x ./mail/rmailkwd.elc
x ./mail/rmailmm.el
x ./mail/rmailmm.elc
x ./mail/rmailmsc.el
x ./mail/rmailmsc.elc
x ./mail/rmailout.el
x ./mail/rmailout.elc
x ./mail/rmailsort.el
x ./mail/rmailsort.elc
x ./mail/rmailsum.el
x ./mail/rmailsum.elc
x ./mail/sendmail.el
x ./mail/sendmail.elc
x ./mail/smtpmail.el
x ./mail/smtpmail.elc
x ./mail/supercite.el
x ./mail/supercite.elc
x ./mail/uce.el
x ./mail/uce.elc
x ./mail/undigest.el
x ./mail/undigest.elc
x ./mail/unrmail.el
x ./mail/unrmail.elc
x ./mail/uudecode.el
x ./mail/uudecode.elc
x ./mail/yenc.el
x ./mail/yenc.elc
x ./leim/ja-dic/
x ./leim/leim-list.el
x ./leim/quail/
x ./leim/quail/4Corner.el
x ./leim/quail/4Corner.elc
x ./leim/quail/arabic.el
x ./leim/quail/arabic.elc
x ./leim/quail/ARRAY30.el
x ./leim/quail/ARRAY30.elc
x ./leim/quail/CCDOSPY.el
x ./leim/quail/CCDOSPY.elc
x ./leim/quail/cham.el
x ./leim/quail/cham.elc
x ./leim/quail/compose.el
x ./leim/quail/compose.elc
x ./leim/quail/croatian.el
x ./leim/quail/croatian.elc
x ./leim/quail/CTLau-b5.el
x ./leim/quail/CTLau-b5.elc
x ./leim/quail/CTLau.el
x ./leim/quail/CTLau.elc
x ./leim/quail/cyril-jis.el
x ./leim/quail/cyril-jis.elc
x ./leim/quail/cyrillic.el
x ./leim/quail/cyrillic.elc
x ./leim/quail/czech.el
x ./leim/quail/czech.elc
x ./leim/quail/ECDICT.el
x ./leim/quail/ECDICT.elc
x ./leim/quail/emoji.el
x ./leim/quail/emoji.elc
x ./leim/quail/ethiopic.el
x ./leim/quail/ethiopic.elc
x ./leim/quail/ETZY.el
x ./leim/quail/ETZY.elc
x ./leim/quail/georgian.el
x ./leim/quail/georgian.elc
x ./leim/quail/greek.el
x ./leim/quail/greek.elc
x ./leim/quail/hangul.el
x ./leim/quail/hangul.elc
x ./leim/quail/hanja-jis.el
x ./leim/quail/hanja-jis.elc
x ./leim/quail/hanja.el
x ./leim/quail/hanja.elc
x ./leim/quail/hanja3.el
x ./leim/quail/hanja3.elc
x ./leim/quail/hebrew.el
x ./leim/quail/hebrew.elc
x ./leim/quail/indian.el
x ./leim/quail/indian.elc
x ./leim/quail/ipa-praat.el
x ./leim/quail/ipa-praat.elc
x ./leim/quail/ipa.el
x ./leim/quail/ipa.elc
x ./leim/quail/japanese.el
x ./leim/quail/japanese.elc
x ./leim/quail/lao.el
x ./leim/quail/lao.elc
x ./leim/quail/latin-alt.el
x ./leim/quail/latin-alt.elc
x ./leim/quail/latin-ltx.el
x ./leim/quail/latin-ltx.elc
x ./leim/quail/latin-post.el
x ./leim/quail/latin-post.elc
x ./leim/quail/latin-pre.el
x ./leim/quail/latin-pre.elc
x ./leim/quail/lrt.el
x ./leim/quail/lrt.elc
x ./leim/quail/persian.el
x ./leim/quail/persian.elc
x ./leim/quail/programmer-dvorak.el
x ./leim/quail/programmer-dvorak.elc
x ./leim/quail/Punct-b5.el
x ./leim/quail/Punct-b5.elc
x ./leim/quail/Punct.el
x ./leim/quail/Punct.elc
x ./leim/quail/PY-b5.el
x ./leim/quail/PY-b5.elc
x ./leim/quail/py-punct.el
x ./leim/quail/py-punct.elc
x ./leim/quail/PY.el
x ./leim/quail/PY.elc
x ./leim/quail/pypunct-b5.el
x ./leim/quail/pypunct-b5.elc
x ./leim/quail/QJ-b5.el
x ./leim/quail/QJ-b5.elc
x ./leim/quail/QJ.el
x ./leim/quail/QJ.elc
x ./leim/quail/quick-b5.el
x ./leim/quail/quick-b5.elc
x ./leim/quail/quick-cns.el
x ./leim/quail/quick-cns.elc
x ./leim/quail/rfc1345.el
x ./leim/quail/rfc1345.elc
x ./leim/quail/sami.el
x ./leim/quail/sami.elc
x ./leim/quail/sgml-input.el
x ./leim/quail/sgml-input.elc
x ./leim/quail/sisheng.el
x ./leim/quail/sisheng.elc
x ./leim/quail/slovak.el
x ./leim/quail/slovak.elc
x ./leim/quail/SW.el
x ./leim/quail/SW.elc
x ./leim/quail/symbol-ksc.el
x ./leim/quail/symbol-ksc.elc
x ./leim/quail/tamil-dvorak.el
x ./leim/quail/tamil-dvorak.elc
x ./leim/quail/thai.el
x ./leim/quail/thai.elc
x ./leim/quail/tibetan.el
x ./leim/quail/tibetan.elc
x ./leim/quail/TONEPY.el
x ./leim/quail/TONEPY.elc
x ./leim/quail/tsang-b5.el
x ./leim/quail/tsang-b5.elc
x ./leim/quail/tsang-cns.el
x ./leim/quail/tsang-cns.elc
x ./leim/quail/uni-input.el
x ./leim/quail/uni-input.elc
x ./leim/quail/viqr.el
x ./leim/quail/viqr.elc
x ./leim/quail/vntelex.el
x ./leim/quail/vntelex.elc
x ./leim/quail/vnvni.el
x ./leim/quail/vnvni.elc
x ./leim/quail/welsh.el
x ./leim/quail/welsh.elc
x ./leim/quail/ZIRANMA.el
x ./leim/quail/ZIRANMA.elc
x ./leim/quail/ZOZY.el
x ./leim/quail/ZOZY.elc
x ./leim/ja-dic/ja-dic.el
x ./leim/ja-dic/ja-dic.elc
x ./language/burmese.el
x ./language/burmese.elc
x ./language/cham.el
x ./language/cham.elc
x ./language/china-util.el
x ./language/china-util.elc
x ./language/chinese.el
x ./language/chinese.elc
x ./language/cyril-util.el
x ./language/cyril-util.elc
x ./language/cyrillic.el
x ./language/cyrillic.elc
x ./language/czech.el
x ./language/czech.elc
x ./language/english.el
x ./language/english.elc
x ./language/ethio-util.el
x ./language/ethio-util.elc
x ./language/ethiopic.el
x ./language/ethiopic.elc
x ./language/european.el
x ./language/european.elc
x ./language/georgian.el
x ./language/georgian.elc
x ./language/greek.el
x ./language/greek.elc
x ./language/hanja-util.el
x ./language/hanja-util.elc
x ./language/hebrew.el
x ./language/hebrew.elc
x ./language/ind-util.el
x ./language/ind-util.elc
x ./language/indian.el
x ./language/indian.elc
x ./language/japan-util.el
x ./language/japan-util.elc
x ./language/japanese.el
x ./language/japanese.elc
x ./language/khmer.el
x ./language/khmer.elc
x ./language/korea-util.el
x ./language/korea-util.elc
x ./language/korean.el
x ./language/korean.elc
x ./language/lao-util.el
x ./language/lao-util.elc
x ./language/lao.el
x ./language/lao.elc
x ./language/misc-lang.el
x ./language/misc-lang.elc
x ./language/pinyin.el
x ./language/pinyin.elc
x ./language/romanian.el
x ./language/romanian.elc
x ./language/sinhala.el
x ./language/sinhala.elc
x ./language/slovak.el
x ./language/slovak.elc
x ./language/tai-viet.el
x ./language/tai-viet.elc
x ./language/thai-util.el
x ./language/thai-util.elc
x ./language/thai-word.el
x ./language/thai-word.elc
x ./language/thai.el
x ./language/thai.elc
x ./language/tibet-util.el
x ./language/tibet-util.elc
x ./language/tibetan.el
x ./language/tibetan.elc
x ./language/tv-util.el
x ./language/tv-util.elc
x ./language/utf-8-lang.el
x ./language/utf-8-lang.elc
x ./language/viet-util.el
x ./language/viet-util.elc
x ./language/vietnamese.el
x ./language/vietnamese.elc
x ./international/ccl.el
x ./international/ccl.elc
x ./international/characters.el
x ./international/characters.elc
x ./international/charprop.el
x ./international/charscript.el
x ./international/charscript.elc
x ./international/cp51932.el
x ./international/cp51932.elc
x ./international/emoji-labels.el
x ./international/emoji-zwj.el
x ./international/emoji-zwj.elc
x ./international/emoji.el
x ./international/emoji.elc
x ./international/eucjp-ms.el
x ./international/eucjp-ms.elc
x ./international/fontset.el
x ./international/fontset.elc
x ./international/idna-mapping.el
x ./international/isearch-x.el
x ./international/isearch-x.elc
x ./international/iso-ascii.el
x ./international/iso-ascii.elc
x ./international/iso-cvt.el
x ./international/iso-cvt.elc
x ./international/iso-transl.el
x ./international/iso-transl.elc
x ./international/ja-dic-cnv.el
x ./international/ja-dic-cnv.elc
x ./international/ja-dic-utl.el
x ./international/ja-dic-utl.elc
x ./international/kinsoku.el
x ./international/kinsoku.elc
x ./international/kkc.el
x ./international/kkc.elc
x ./international/latexenc.el
x ./international/latexenc.elc
x ./international/latin1-disp.el
x ./international/latin1-disp.elc
x ./international/mule-cmds.el
x ./international/mule-cmds.elc
x ./international/mule-conf.el
x ./international/mule-conf.elc
x ./international/mule-diag.el
x ./international/mule-diag.elc
x ./international/mule-util.el
x ./international/mule-util.elc
x ./international/mule.el
x ./international/mule.elc
x ./international/ogonek.el
x ./international/ogonek.elc
x ./international/quail.el
x ./international/quail.elc
x ./international/rfc1843.el
x ./international/rfc1843.elc
x ./international/robin.el
x ./international/robin.elc
x ./international/textsec-check.el
x ./international/textsec-check.elc
x ./international/textsec.el
x ./international/textsec.elc
x ./international/titdic-cnv.el
x ./international/titdic-cnv.elc
x ./international/ucs-normalize.el
x ./international/ucs-normalize.elc
x ./international/uni-bidi.el
x ./international/uni-brackets.el
x ./international/uni-category.el
x ./international/uni-combining.el
x ./international/uni-comment.el
x ./international/uni-confusable.el
x ./international/uni-decimal.el
x ./international/uni-decomposition.el
x ./international/uni-digit.el
x ./international/uni-lowercase.el
x ./international/uni-mirrored.el
x ./international/uni-name.el
x ./international/uni-numeric.el
x ./international/uni-old-name.el
x ./international/uni-scripts.el
x ./international/uni-special-lowercase.el
x ./international/uni-special-titlecase.el
x ./international/uni-special-uppercase.el
x ./international/uni-titlecase.el
x ./international/uni-uppercase.el
x ./international/utf-7.el
x ./international/utf-7.elc
x ./international/utf7.el
x ./international/utf7.elc
x ./image/compface.el
x ./image/compface.elc
x ./image/exif.el
x ./image/exif.elc
x ./image/gravatar.el
x ./image/gravatar.elc
x ./image/image-converter.el
x ./image/image-converter.elc
x ./gnus/canlock.el
x ./gnus/canlock.elc
x ./gnus/ChangeLog.1
x ./gnus/ChangeLog.2
x ./gnus/ChangeLog.3
x ./gnus/deuglify.el
x ./gnus/deuglify.elc
x ./gnus/gmm-utils.el
x ./gnus/gmm-utils.elc
x ./gnus/gnus-agent.el
x ./gnus/gnus-agent.elc
x ./gnus/gnus-art.el
x ./gnus/gnus-art.elc
x ./gnus/gnus-async.el
x ./gnus/gnus-async.elc
x ./gnus/gnus-bcklg.el
x ./gnus/gnus-bcklg.elc
x ./gnus/gnus-bookmark.el
x ./gnus/gnus-bookmark.elc
x ./gnus/gnus-cache.el
x ./gnus/gnus-cache.elc
x ./gnus/gnus-cite.el
x ./gnus/gnus-cite.elc
x ./gnus/gnus-cloud.el
x ./gnus/gnus-cloud.elc
x ./gnus/gnus-cus.el
x ./gnus/gnus-cus.elc
x ./gnus/gnus-dbus.el
x ./gnus/gnus-dbus.elc
x ./gnus/gnus-delay.el
x ./gnus/gnus-delay.elc
x ./gnus/gnus-demon.el
x ./gnus/gnus-demon.elc
x ./gnus/gnus-diary.el
x ./gnus/gnus-diary.elc
x ./gnus/gnus-dired.el
x ./gnus/gnus-dired.elc
x ./gnus/gnus-draft.el
x ./gnus/gnus-draft.elc
x ./gnus/gnus-dup.el
x ./gnus/gnus-dup.elc
x ./gnus/gnus-eform.el
x ./gnus/gnus-eform.elc
x ./gnus/gnus-fun.el
x ./gnus/gnus-fun.elc
x ./gnus/gnus-gravatar.el
x ./gnus/gnus-gravatar.elc
x ./gnus/gnus-group.el
x ./gnus/gnus-group.elc
x ./gnus/gnus-html.el
x ./gnus/gnus-html.elc
x ./gnus/gnus-icalendar.el
x ./gnus/gnus-icalendar.elc
x ./gnus/gnus-int.el
x ./gnus/gnus-int.elc
x ./gnus/gnus-kill.el
x ./gnus/gnus-kill.elc
x ./gnus/gnus-logic.el
x ./gnus/gnus-logic.elc
x ./gnus/gnus-mh.el
x ./gnus/gnus-mh.elc
x ./gnus/gnus-ml.el
x ./gnus/gnus-ml.elc
x ./gnus/gnus-mlspl.el
x ./gnus/gnus-mlspl.elc
x ./gnus/gnus-msg.el
x ./gnus/gnus-msg.elc
x ./gnus/gnus-notifications.el
x ./gnus/gnus-notifications.elc
x ./gnus/gnus-picon.el
x ./gnus/gnus-picon.elc
x ./gnus/gnus-range.el
x ./gnus/gnus-range.elc
x ./gnus/gnus-registry.el
x ./gnus/gnus-registry.elc
x ./gnus/gnus-rfc1843.el
x ./gnus/gnus-rfc1843.elc
x ./gnus/gnus-rmail.el
x ./gnus/gnus-rmail.elc
x ./gnus/gnus-salt.el
x ./gnus/gnus-salt.elc
x ./gnus/gnus-score.el
x ./gnus/gnus-score.elc
x ./gnus/gnus-search.el
x ./gnus/gnus-search.elc
x ./gnus/gnus-sieve.el
x ./gnus/gnus-sieve.elc
x ./gnus/gnus-spec.el
x ./gnus/gnus-spec.elc
x ./gnus/gnus-srvr.el
x ./gnus/gnus-srvr.elc
x ./gnus/gnus-start.el
x ./gnus/gnus-start.elc
x ./gnus/gnus-sum.el
x ./gnus/gnus-sum.elc
x ./gnus/gnus-topic.el
x ./gnus/gnus-topic.elc
x ./gnus/gnus-undo.el
x ./gnus/gnus-undo.elc
x ./gnus/gnus-util.el
x ./gnus/gnus-util.elc
x ./gnus/gnus-uu.el
x ./gnus/gnus-uu.elc
x ./gnus/gnus-vm.el
x ./gnus/gnus-vm.elc
x ./gnus/gnus-win.el
x ./gnus/gnus-win.elc
x ./gnus/gnus.el
x ./gnus/gnus.elc
x ./gnus/gssapi.el
x ./gnus/gssapi.elc
x ./gnus/legacy-gnus-agent.el
x ./gnus/legacy-gnus-agent.elc
x ./gnus/mail-source.el
x ./gnus/mail-source.elc
x ./gnus/message.el
x ./gnus/message.elc
x ./gnus/mm-archive.el
x ./gnus/mm-archive.elc
x ./gnus/mm-bodies.el
x ./gnus/mm-bodies.elc
x ./gnus/mm-decode.el
x ./gnus/mm-decode.elc
x ./gnus/mm-encode.el
x ./gnus/mm-encode.elc
x ./gnus/mm-extern.el
x ./gnus/mm-extern.elc
x ./gnus/mm-partial.el
x ./gnus/mm-partial.elc
x ./gnus/mm-url.el
x ./gnus/mm-url.elc
x ./gnus/mm-util.el
x ./gnus/mm-util.elc
x ./gnus/mm-uu.el
x ./gnus/mm-uu.elc
x ./gnus/mm-view.el
x ./gnus/mm-view.elc
x ./gnus/mml-sec.el
x ./gnus/mml-sec.elc
x ./gnus/mml-smime.el
x ./gnus/mml-smime.elc
x ./gnus/mml.el
x ./gnus/mml.elc
x ./gnus/mml1991.el
x ./gnus/mml1991.elc
x ./gnus/mml2015.el
x ./gnus/mml2015.elc
x ./gnus/nnagent.el
x ./gnus/nnagent.elc
x ./gnus/nnbabyl.el
x ./gnus/nnbabyl.elc
x ./gnus/nndiary.el
x ./gnus/nndiary.elc
x ./gnus/nndir.el
x ./gnus/nndir.elc
x ./gnus/nndoc.el
x ./gnus/nndoc.elc
x ./gnus/nndraft.el
x ./gnus/nndraft.elc
x ./gnus/nneething.el
x ./gnus/nneething.elc
x ./gnus/nnfolder.el
x ./gnus/nnfolder.elc
x ./gnus/nngateway.el
x ./gnus/nngateway.elc
x ./gnus/nnheader.el
x ./gnus/nnheader.elc
x ./gnus/nnimap.el
x ./gnus/nnimap.elc
x ./gnus/nnmail.el
x ./gnus/nnmail.elc
x ./gnus/nnmaildir.el
x ./gnus/nnmaildir.elc
x ./gnus/nnmairix.el
x ./gnus/nnmairix.elc
x ./gnus/nnmbox.el
x ./gnus/nnmbox.elc
x ./gnus/nnmh.el
x ./gnus/nnmh.elc
x ./gnus/nnml.el
x ./gnus/nnml.elc
x ./gnus/nnnil.el
x ./gnus/nnnil.elc
x ./gnus/nnoo.el
x ./gnus/nnoo.elc
x ./gnus/nnregistry.el
x ./gnus/nnregistry.elc
x ./gnus/nnrss.el
x ./gnus/nnrss.elc
x ./gnus/nnselect.el
x ./gnus/nnselect.elc
x ./gnus/nnspool.el
x ./gnus/nnspool.elc
x ./gnus/nntp.el
x ./gnus/nntp.elc
x ./gnus/nnvirtual.el
x ./gnus/nnvirtual.elc
x ./gnus/nnweb.el
x ./gnus/nnweb.elc
x ./gnus/score-mode.el
x ./gnus/score-mode.elc
x ./gnus/smiley.el
x ./gnus/smiley.elc
x ./gnus/smime.el
x ./gnus/smime.elc
x ./gnus/spam-report.el
x ./gnus/spam-report.elc
x ./gnus/spam-stat.el
x ./gnus/spam-stat.elc
x ./gnus/spam-wash.el
x ./gnus/spam-wash.elc
x ./gnus/spam.el
x ./gnus/spam.elc
x ./eshell/em-alias.el
x ./eshell/em-alias.elc
x ./eshell/em-banner.el
x ./eshell/em-banner.elc
x ./eshell/em-basic.el
x ./eshell/em-basic.elc
x ./eshell/em-cmpl.el
x ./eshell/em-cmpl.elc
x ./eshell/em-dirs.el
x ./eshell/em-dirs.elc
x ./eshell/em-elecslash.el
x ./eshell/em-elecslash.elc
x ./eshell/em-extpipe.el
x ./eshell/em-extpipe.elc
x ./eshell/em-glob.el
x ./eshell/em-glob.elc
x ./eshell/em-hist.el
x ./eshell/em-hist.elc
x ./eshell/em-ls.el
x ./eshell/em-ls.elc
x ./eshell/em-pred.el
x ./eshell/em-pred.elc
x ./eshell/em-prompt.el
x ./eshell/em-prompt.elc
x ./eshell/em-rebind.el
x ./eshell/em-rebind.elc
x ./eshell/em-script.el
x ./eshell/em-script.elc
x ./eshell/em-smart.el
x ./eshell/em-smart.elc
x ./eshell/em-term.el
x ./eshell/em-term.elc
x ./eshell/em-tramp.el
x ./eshell/em-tramp.elc
x ./eshell/em-unix.el
x ./eshell/em-unix.elc
x ./eshell/em-xtra.el
x ./eshell/em-xtra.elc
x ./eshell/esh-arg.el
x ./eshell/esh-arg.elc
x ./eshell/esh-cmd.el
x ./eshell/esh-cmd.elc
x ./eshell/esh-ext.el
x ./eshell/esh-ext.elc
x ./eshell/esh-groups.el
x ./eshell/esh-io.el
x ./eshell/esh-io.elc
x ./eshell/esh-mode.el
x ./eshell/esh-mode.elc
x ./eshell/esh-module.el
x ./eshell/esh-module.elc
x ./eshell/esh-opt.el
x ./eshell/esh-opt.elc
x ./eshell/esh-proc.el
x ./eshell/esh-proc.elc
x ./eshell/esh-util.el
x ./eshell/esh-util.elc
x ./eshell/esh-var.el
x ./eshell/esh-var.elc
x ./eshell/eshell.el
x ./eshell/eshell.elc
x ./erc/ChangeLog.1
x ./erc/ChangeLog.2
x ./erc/erc-autoaway.el
x ./erc/erc-autoaway.elc
x ./erc/erc-backend.el
x ./erc/erc-backend.elc
x ./erc/erc-button.el
x ./erc/erc-button.elc
x ./erc/erc-capab.el
x ./erc/erc-capab.elc
x ./erc/erc-compat.el
x ./erc/erc-compat.elc
x ./erc/erc-dcc.el
x ./erc/erc-dcc.elc
x ./erc/erc-desktop-notifications.el
x ./erc/erc-desktop-notifications.elc
x ./erc/erc-ezbounce.el
x ./erc/erc-ezbounce.elc
x ./erc/erc-fill.el
x ./erc/erc-fill.elc
x ./erc/erc-goodies.el
x ./erc/erc-goodies.elc
x ./erc/erc-ibuffer.el
x ./erc/erc-ibuffer.elc
x ./erc/erc-identd.el
x ./erc/erc-identd.elc
x ./erc/erc-imenu.el
x ./erc/erc-imenu.elc
x ./erc/erc-join.el
x ./erc/erc-join.elc
x ./erc/erc-lang.el
x ./erc/erc-lang.elc
x ./erc/erc-list.el
x ./erc/erc-list.elc
x ./erc/erc-loaddefs.el
x ./erc/erc-log.el
x ./erc/erc-log.elc
x ./erc/erc-match.el
x ./erc/erc-match.elc
x ./erc/erc-menu.el
x ./erc/erc-menu.elc
x ./erc/erc-netsplit.el
x ./erc/erc-netsplit.elc
x ./erc/erc-networks.el
x ./erc/erc-networks.elc
x ./erc/erc-notify.el
x ./erc/erc-notify.elc
x ./erc/erc-page.el
x ./erc/erc-page.elc
x ./erc/erc-pcomplete.el
x ./erc/erc-pcomplete.elc
x ./erc/erc-replace.el
x ./erc/erc-replace.elc
x ./erc/erc-ring.el
x ./erc/erc-ring.elc
x ./erc/erc-services.el
x ./erc/erc-services.elc
x ./erc/erc-sound.el
x ./erc/erc-sound.elc
x ./erc/erc-speedbar.el
x ./erc/erc-speedbar.elc
x ./erc/erc-spelling.el
x ./erc/erc-spelling.elc
x ./erc/erc-stamp.el
x ./erc/erc-stamp.elc
x ./erc/erc-status-sidebar.el
x ./erc/erc-status-sidebar.elc
x ./erc/erc-track.el
x ./erc/erc-track.elc
x ./erc/erc-truncate.el
x ./erc/erc-truncate.elc
x ./erc/erc-xdcc.el
x ./erc/erc-xdcc.elc
x ./erc/erc.el
x ./erc/erc.elc
x ./emulation/cua-base.el
x ./emulation/cua-base.elc
x ./emulation/cua-gmrk.el
x ./emulation/cua-gmrk.elc
x ./emulation/cua-rect.el
x ./emulation/cua-rect.elc
x ./emulation/edt-lk201.el
x ./emulation/edt-lk201.elc
x ./emulation/edt-mapper.el
x ./emulation/edt-mapper.elc
x ./emulation/edt-pc.el
x ./emulation/edt-pc.elc
x ./emulation/edt-vt100.el
x ./emulation/edt-vt100.elc
x ./emulation/edt.el
x ./emulation/edt.elc
x ./emulation/keypad.el
x ./emulation/keypad.elc
x ./emulation/viper-cmd.el
x ./emulation/viper-cmd.elc
x ./emulation/viper-ex.el
x ./emulation/viper-ex.elc
x ./emulation/viper-init.el
x ./emulation/viper-init.elc
x ./emulation/viper-keym.el
x ./emulation/viper-keym.elc
x ./emulation/viper-macs.el
x ./emulation/viper-macs.elc
x ./emulation/viper-mous.el
x ./emulation/viper-mous.elc
x ./emulation/viper-util.el
x ./emulation/viper-util.elc
x ./emulation/viper.el
x ./emulation/viper.elc
x ./emacs-lisp/advice.el
x ./emacs-lisp/advice.elc
x ./emacs-lisp/autoload.el
x ./emacs-lisp/autoload.elc
x ./emacs-lisp/avl-tree.el
x ./emacs-lisp/avl-tree.elc
x ./emacs-lisp/backquote.el
x ./emacs-lisp/backquote.elc
x ./emacs-lisp/backtrace.el
x ./emacs-lisp/backtrace.elc
x ./emacs-lisp/benchmark.el
x ./emacs-lisp/benchmark.elc
x ./emacs-lisp/bindat.el
x ./emacs-lisp/bindat.elc
x ./emacs-lisp/byte-opt.el
x ./emacs-lisp/byte-opt.elc
x ./emacs-lisp/byte-run.el
x ./emacs-lisp/byte-run.elc
x ./emacs-lisp/bytecomp.el
x ./emacs-lisp/bytecomp.elc
x ./emacs-lisp/cconv.el
x ./emacs-lisp/cconv.elc
x ./emacs-lisp/chart.el
x ./emacs-lisp/chart.elc
x ./emacs-lisp/check-declare.el
x ./emacs-lisp/check-declare.elc
x ./emacs-lisp/checkdoc.el
x ./emacs-lisp/checkdoc.elc
x ./emacs-lisp/cl-extra.el
x ./emacs-lisp/cl-extra.elc
x ./emacs-lisp/cl-generic.el
x ./emacs-lisp/cl-generic.elc
x ./emacs-lisp/cl-indent.el
x ./emacs-lisp/cl-indent.elc
x ./emacs-lisp/cl-lib.el
x ./emacs-lisp/cl-lib.elc
x ./emacs-lisp/cl-loaddefs.el
x ./emacs-lisp/cl-macs.el
x ./emacs-lisp/cl-macs.elc
x ./emacs-lisp/cl-preloaded.el
x ./emacs-lisp/cl-preloaded.elc
x ./emacs-lisp/cl-print.el
x ./emacs-lisp/cl-print.elc
x ./emacs-lisp/cl-seq.el
x ./emacs-lisp/cl-seq.elc
x ./emacs-lisp/comp-cstr.el
x ./emacs-lisp/comp.el
x ./emacs-lisp/copyright.el
x ./emacs-lisp/copyright.elc
x ./emacs-lisp/crm.el
x ./emacs-lisp/crm.elc
x ./emacs-lisp/cursor-sensor.el
x ./emacs-lisp/cursor-sensor.elc
x ./emacs-lisp/debug-early.el
x ./emacs-lisp/debug-early.elc
x ./emacs-lisp/debug.el
x ./emacs-lisp/debug.elc
x ./emacs-lisp/derived.el
x ./emacs-lisp/derived.elc
x ./emacs-lisp/disass.el
x ./emacs-lisp/disass.elc
x ./emacs-lisp/easy-mmode.el
x ./emacs-lisp/easy-mmode.elc
x ./emacs-lisp/easymenu.el
x ./emacs-lisp/easymenu.elc
x ./emacs-lisp/edebug.el
x ./emacs-lisp/edebug.elc
x ./emacs-lisp/eieio-base.el
x ./emacs-lisp/eieio-base.elc
x ./emacs-lisp/eieio-core.el
x ./emacs-lisp/eieio-core.elc
x ./emacs-lisp/eieio-custom.el
x ./emacs-lisp/eieio-custom.elc
x ./emacs-lisp/eieio-datadebug.el
x ./emacs-lisp/eieio-datadebug.elc
x ./emacs-lisp/eieio-loaddefs.el
x ./emacs-lisp/eieio-opt.el
x ./emacs-lisp/eieio-opt.elc
x ./emacs-lisp/eieio-speedbar.el
x ./emacs-lisp/eieio-speedbar.elc
x ./emacs-lisp/eieio.el
x ./emacs-lisp/eieio.elc
x ./emacs-lisp/eldoc.el
x ./emacs-lisp/eldoc.elc
x ./emacs-lisp/elint.el
x ./emacs-lisp/elint.elc
x ./emacs-lisp/elp.el
x ./emacs-lisp/elp.elc
x ./emacs-lisp/ert-x.el
x ./emacs-lisp/ert-x.elc
x ./emacs-lisp/ert.el
x ./emacs-lisp/ert.elc
x ./emacs-lisp/ewoc.el
x ./emacs-lisp/ewoc.elc
x ./emacs-lisp/faceup.el
x ./emacs-lisp/faceup.elc
x ./emacs-lisp/find-func.el
x ./emacs-lisp/find-func.elc
x ./emacs-lisp/float-sup.el
x ./emacs-lisp/float-sup.elc
x ./emacs-lisp/generator.el
x ./emacs-lisp/generator.elc
x ./emacs-lisp/generic.el
x ./emacs-lisp/generic.elc
x ./emacs-lisp/gv.el
x ./emacs-lisp/gv.elc
x ./emacs-lisp/helper.el
x ./emacs-lisp/helper.elc
x ./emacs-lisp/hierarchy.el
x ./emacs-lisp/hierarchy.elc
x ./emacs-lisp/inline.el
x ./emacs-lisp/inline.elc
x ./emacs-lisp/let-alist.el
x ./emacs-lisp/let-alist.elc
x ./emacs-lisp/lisp-mnt.el
x ./emacs-lisp/lisp-mnt.elc
x ./emacs-lisp/lisp-mode.el
x ./emacs-lisp/lisp-mode.elc
x ./emacs-lisp/lisp.el
x ./emacs-lisp/lisp.elc
x ./emacs-lisp/macroexp.el
x ./emacs-lisp/macroexp.elc
x ./emacs-lisp/map-ynp.el
x ./emacs-lisp/map-ynp.elc
x ./emacs-lisp/map.el
x ./emacs-lisp/map.elc
x ./emacs-lisp/memory-report.el
x ./emacs-lisp/memory-report.elc
x ./emacs-lisp/multisession.el
x ./emacs-lisp/multisession.elc
x ./emacs-lisp/nadvice.el
x ./emacs-lisp/nadvice.elc
x ./emacs-lisp/oclosure.el
x ./emacs-lisp/oclosure.elc
x ./emacs-lisp/package-x.el
x ./emacs-lisp/package-x.elc
x ./emacs-lisp/package.el
x ./emacs-lisp/package.elc
x ./emacs-lisp/pcase.el
x ./emacs-lisp/pcase.elc
x ./emacs-lisp/pp.el
x ./emacs-lisp/pp.elc
x ./emacs-lisp/radix-tree.el
x ./emacs-lisp/radix-tree.elc
x ./emacs-lisp/range.el
x ./emacs-lisp/range.elc
x ./emacs-lisp/re-builder.el
x ./emacs-lisp/re-builder.elc
x ./emacs-lisp/regexp-opt.el
x ./emacs-lisp/regexp-opt.elc
x ./emacs-lisp/regi.el
x ./emacs-lisp/regi.elc
x ./emacs-lisp/ring.el
x ./emacs-lisp/ring.elc
x ./emacs-lisp/rmc.el
x ./emacs-lisp/rmc.elc
x ./emacs-lisp/rx.el
x ./emacs-lisp/rx.elc
x ./emacs-lisp/seq.el
x ./emacs-lisp/seq.elc
x ./emacs-lisp/shadow.el
x ./emacs-lisp/shadow.elc
x ./emacs-lisp/shortdoc.el
x ./emacs-lisp/shortdoc.elc
x ./emacs-lisp/shorthands.el
x ./emacs-lisp/shorthands.elc
x ./emacs-lisp/smie.el
x ./emacs-lisp/smie.elc
x ./emacs-lisp/subr-x.el
x ./emacs-lisp/subr-x.elc
x ./emacs-lisp/syntax.el
x ./emacs-lisp/syntax.elc
x ./emacs-lisp/tabulated-list.el
x ./emacs-lisp/tabulated-list.elc
x ./emacs-lisp/tcover-ses.el
x ./emacs-lisp/tcover-ses.elc
x ./emacs-lisp/testcover.el
x ./emacs-lisp/testcover.elc
x ./emacs-lisp/text-property-search.el
x ./emacs-lisp/text-property-search.elc
x ./emacs-lisp/thunk.el
x ./emacs-lisp/thunk.elc
x ./emacs-lisp/timer-list.el
x ./emacs-lisp/timer-list.elc
x ./emacs-lisp/timer.el
x ./emacs-lisp/timer.elc
x ./emacs-lisp/tq.el
x ./emacs-lisp/tq.elc
x ./emacs-lisp/trace.el
x ./emacs-lisp/trace.elc
x ./emacs-lisp/unsafep.el
x ./emacs-lisp/unsafep.elc
x ./emacs-lisp/vtable.el
x ./emacs-lisp/vtable.elc
x ./emacs-lisp/warnings.el
x ./emacs-lisp/warnings.elc
x ./cedet/cedet-cscope.el
x ./cedet/cedet-cscope.elc
x ./cedet/cedet-files.el
x ./cedet/cedet-files.elc
x ./cedet/cedet-global.el
x ./cedet/cedet-global.elc
x ./cedet/cedet-idutils.el
x ./cedet/cedet-idutils.elc
x ./cedet/cedet.el
x ./cedet/cedet.elc
x ./cedet/ChangeLog.1
x ./cedet/data-debug.el
x ./cedet/data-debug.elc
x ./cedet/ede/
x ./cedet/ede.el
x ./cedet/ede.elc
x ./cedet/mode-local.el
x ./cedet/mode-local.elc
x ./cedet/pulse.el
x ./cedet/pulse.elc
x ./cedet/semantic/
x ./cedet/semantic.el
x ./cedet/semantic.elc
x ./cedet/srecode/
x ./cedet/srecode.el
x ./cedet/srecode.elc
x ./cedet/srecode/args.el
x ./cedet/srecode/args.elc
x ./cedet/srecode/compile.el
x ./cedet/srecode/compile.elc
x ./cedet/srecode/cpp.el
x ./cedet/srecode/cpp.elc
x ./cedet/srecode/ctxt.el
x ./cedet/srecode/ctxt.elc
x ./cedet/srecode/dictionary.el
x ./cedet/srecode/dictionary.elc
x ./cedet/srecode/document.el
x ./cedet/srecode/document.elc
x ./cedet/srecode/el.el
x ./cedet/srecode/el.elc
x ./cedet/srecode/expandproto.el
x ./cedet/srecode/expandproto.elc
x ./cedet/srecode/extract.el
x ./cedet/srecode/extract.elc
x ./cedet/srecode/fields.el
x ./cedet/srecode/fields.elc
x ./cedet/srecode/filters.el
x ./cedet/srecode/filters.elc
x ./cedet/srecode/find.el
x ./cedet/srecode/find.elc
x ./cedet/srecode/getset.el
x ./cedet/srecode/getset.elc
x ./cedet/srecode/insert.el
x ./cedet/srecode/insert.elc
x ./cedet/srecode/java.el
x ./cedet/srecode/java.elc
x ./cedet/srecode/loaddefs.el
x ./cedet/srecode/map.el
x ./cedet/srecode/map.elc
x ./cedet/srecode/mode.el
x ./cedet/srecode/mode.elc
x ./cedet/srecode/semantic.el
x ./cedet/srecode/semantic.elc
x ./cedet/srecode/srt-mode.el
x ./cedet/srecode/srt-mode.elc
x ./cedet/srecode/srt-wy.el
x ./cedet/srecode/srt-wy.elc
x ./cedet/srecode/srt.el
x ./cedet/srecode/srt.elc
x ./cedet/srecode/table.el
x ./cedet/srecode/table.elc
x ./cedet/srecode/template.el
x ./cedet/srecode/template.elc
x ./cedet/srecode/texi.el
x ./cedet/srecode/texi.elc
x ./cedet/semantic/analyze/
x ./cedet/semantic/analyze.el
x ./cedet/semantic/analyze.elc
x ./cedet/semantic/bovine/
x ./cedet/semantic/bovine.el
x ./cedet/semantic/bovine.elc
x ./cedet/semantic/chart.el
x ./cedet/semantic/chart.elc
x ./cedet/semantic/complete.el
x ./cedet/semantic/complete.elc
x ./cedet/semantic/ctxt.el
x ./cedet/semantic/ctxt.elc
x ./cedet/semantic/db-debug.el
x ./cedet/semantic/db-debug.elc
x ./cedet/semantic/db-ebrowse.el
x ./cedet/semantic/db-ebrowse.elc
x ./cedet/semantic/db-el.el
x ./cedet/semantic/db-el.elc
x ./cedet/semantic/db-file.el
x ./cedet/semantic/db-file.elc
x ./cedet/semantic/db-find.el
x ./cedet/semantic/db-find.elc
x ./cedet/semantic/db-global.el
x ./cedet/semantic/db-global.elc
x ./cedet/semantic/db-javascript.el
x ./cedet/semantic/db-javascript.elc
x ./cedet/semantic/db-mode.el
x ./cedet/semantic/db-mode.elc
x ./cedet/semantic/db-ref.el
x ./cedet/semantic/db-ref.elc
x ./cedet/semantic/db-typecache.el
x ./cedet/semantic/db-typecache.elc
x ./cedet/semantic/db.el
x ./cedet/semantic/db.elc
x ./cedet/semantic/debug.el
x ./cedet/semantic/debug.elc
x ./cedet/semantic/decorate/
x ./cedet/semantic/decorate.el
x ./cedet/semantic/decorate.elc
x ./cedet/semantic/dep.el
x ./cedet/semantic/dep.elc
x ./cedet/semantic/doc.el
x ./cedet/semantic/doc.elc
x ./cedet/semantic/ede-grammar.el
x ./cedet/semantic/ede-grammar.elc
x ./cedet/semantic/edit.el
x ./cedet/semantic/edit.elc
x ./cedet/semantic/find.el
x ./cedet/semantic/find.elc
x ./cedet/semantic/format.el
x ./cedet/semantic/format.elc
x ./cedet/semantic/fw.el
x ./cedet/semantic/fw.elc
x ./cedet/semantic/grammar-wy.el
x ./cedet/semantic/grammar-wy.elc
x ./cedet/semantic/grammar.el
x ./cedet/semantic/grammar.elc
x ./cedet/semantic/grm-wy-boot.el
x ./cedet/semantic/grm-wy-boot.elc
x ./cedet/semantic/html.el
x ./cedet/semantic/html.elc
x ./cedet/semantic/ia-sb.el
x ./cedet/semantic/ia-sb.elc
x ./cedet/semantic/ia.el
x ./cedet/semantic/ia.elc
x ./cedet/semantic/idle.el
x ./cedet/semantic/idle.elc
x ./cedet/semantic/imenu.el
x ./cedet/semantic/imenu.elc
x ./cedet/semantic/java.el
x ./cedet/semantic/java.elc
x ./cedet/semantic/lex-spp.el
x ./cedet/semantic/lex-spp.elc
x ./cedet/semantic/lex.el
x ./cedet/semantic/lex.elc
x ./cedet/semantic/loaddefs.el
x ./cedet/semantic/mru-bookmark.el
x ./cedet/semantic/mru-bookmark.elc
x ./cedet/semantic/sb.el
x ./cedet/semantic/sb.elc
x ./cedet/semantic/scope.el
x ./cedet/semantic/scope.elc
x ./cedet/semantic/senator.el
x ./cedet/semantic/senator.elc
x ./cedet/semantic/sort.el
x ./cedet/semantic/sort.elc
x ./cedet/semantic/symref/
x ./cedet/semantic/symref.el
x ./cedet/semantic/symref.elc
x ./cedet/semantic/tag-file.el
x ./cedet/semantic/tag-file.elc
x ./cedet/semantic/tag-ls.el
x ./cedet/semantic/tag-ls.elc
x ./cedet/semantic/tag-write.el
x ./cedet/semantic/tag-write.elc
x ./cedet/semantic/tag.el
x ./cedet/semantic/tag.elc
x ./cedet/semantic/texi.el
x ./cedet/semantic/texi.elc
x ./cedet/semantic/util-modes.el
x ./cedet/semantic/util-modes.elc
x ./cedet/semantic/util.el
x ./cedet/semantic/util.elc
x ./cedet/semantic/wisent/
x ./cedet/semantic/wisent.el
x ./cedet/semantic/wisent.elc
x ./cedet/semantic/wisent/comp.el
x ./cedet/semantic/wisent/comp.elc
x ./cedet/semantic/wisent/grammar.el
x ./cedet/semantic/wisent/grammar.elc
x ./cedet/semantic/wisent/java-tags.el
x ./cedet/semantic/wisent/java-tags.elc
x ./cedet/semantic/wisent/javascript.el
x ./cedet/semantic/wisent/javascript.elc
x ./cedet/semantic/wisent/javat-wy.el
x ./cedet/semantic/wisent/javat-wy.elc
x ./cedet/semantic/wisent/js-wy.el
x ./cedet/semantic/wisent/js-wy.elc
x ./cedet/semantic/wisent/python-wy.el
x ./cedet/semantic/wisent/python-wy.elc
x ./cedet/semantic/wisent/python.el
x ./cedet/semantic/wisent/python.elc
x ./cedet/semantic/wisent/wisent.el
x ./cedet/semantic/wisent/wisent.elc
x ./cedet/semantic/symref/cscope.el
x ./cedet/semantic/symref/cscope.elc
x ./cedet/semantic/symref/filter.el
x ./cedet/semantic/symref/filter.elc
x ./cedet/semantic/symref/global.el
x ./cedet/semantic/symref/global.elc
x ./cedet/semantic/symref/grep.el
x ./cedet/semantic/symref/grep.elc
x ./cedet/semantic/symref/idutils.el
x ./cedet/semantic/symref/idutils.elc
x ./cedet/semantic/symref/list.el
x ./cedet/semantic/symref/list.elc
x ./cedet/semantic/decorate/include.el
x ./cedet/semantic/decorate/include.elc
x ./cedet/semantic/decorate/mode.el
x ./cedet/semantic/decorate/mode.elc
x ./cedet/semantic/bovine/c-by.el
x ./cedet/semantic/bovine/c-by.elc
x ./cedet/semantic/bovine/c.el
x ./cedet/semantic/bovine/c.elc
x ./cedet/semantic/bovine/debug.el
x ./cedet/semantic/bovine/debug.elc
x ./cedet/semantic/bovine/el.el
x ./cedet/semantic/bovine/el.elc
x ./cedet/semantic/bovine/gcc.el
x ./cedet/semantic/bovine/gcc.elc
x ./cedet/semantic/bovine/grammar.el
x ./cedet/semantic/bovine/grammar.elc
x ./cedet/semantic/bovine/make-by.el
x ./cedet/semantic/bovine/make-by.elc
x ./cedet/semantic/bovine/make.el
x ./cedet/semantic/bovine/make.elc
x ./cedet/semantic/bovine/scm-by.el
x ./cedet/semantic/bovine/scm-by.elc
x ./cedet/semantic/bovine/scm.el
x ./cedet/semantic/bovine/scm.elc
x ./cedet/semantic/analyze/complete.el
x ./cedet/semantic/analyze/complete.elc
x ./cedet/semantic/analyze/debug.el
x ./cedet/semantic/analyze/debug.elc
x ./cedet/semantic/analyze/fcn.el
x ./cedet/semantic/analyze/fcn.elc
x ./cedet/semantic/analyze/refs.el
x ./cedet/semantic/analyze/refs.elc
x ./cedet/ede/auto.el
x ./cedet/ede/auto.elc
x ./cedet/ede/autoconf-edit.el
x ./cedet/ede/autoconf-edit.elc
x ./cedet/ede/base.el
x ./cedet/ede/base.elc
x ./cedet/ede/config.el
x ./cedet/ede/config.elc
x ./cedet/ede/cpp-root.el
x ./cedet/ede/cpp-root.elc
x ./cedet/ede/custom.el
x ./cedet/ede/custom.elc
x ./cedet/ede/detect.el
x ./cedet/ede/detect.elc
x ./cedet/ede/dired.el
x ./cedet/ede/dired.elc
x ./cedet/ede/emacs.el
x ./cedet/ede/emacs.elc
x ./cedet/ede/files.el
x ./cedet/ede/files.elc
x ./cedet/ede/generic.el
x ./cedet/ede/generic.elc
x ./cedet/ede/linux.el
x ./cedet/ede/linux.elc
x ./cedet/ede/loaddefs.el
x ./cedet/ede/locate.el
x ./cedet/ede/locate.elc
x ./cedet/ede/make.el
x ./cedet/ede/make.elc
x ./cedet/ede/makefile-edit.el
x ./cedet/ede/makefile-edit.elc
x ./cedet/ede/pconf.el
x ./cedet/ede/pconf.elc
x ./cedet/ede/pmake.el
x ./cedet/ede/pmake.elc
x ./cedet/ede/proj-archive.el
x ./cedet/ede/proj-archive.elc
x ./cedet/ede/proj-aux.el
x ./cedet/ede/proj-aux.elc
x ./cedet/ede/proj-comp.el
x ./cedet/ede/proj-comp.elc
x ./cedet/ede/proj-elisp.el
x ./cedet/ede/proj-elisp.elc
x ./cedet/ede/proj-info.el
x ./cedet/ede/proj-info.elc
x ./cedet/ede/proj-misc.el
x ./cedet/ede/proj-misc.elc
x ./cedet/ede/proj-obj.el
x ./cedet/ede/proj-obj.elc
x ./cedet/ede/proj-prog.el
x ./cedet/ede/proj-prog.elc
x ./cedet/ede/proj-scheme.el
x ./cedet/ede/proj-scheme.elc
x ./cedet/ede/proj-shared.el
x ./cedet/ede/proj-shared.elc
x ./cedet/ede/proj.el
x ./cedet/ede/proj.elc
x ./cedet/ede/project-am.el
x ./cedet/ede/project-am.elc
x ./cedet/ede/shell.el
x ./cedet/ede/shell.elc
x ./cedet/ede/simple.el
x ./cedet/ede/simple.elc
x ./cedet/ede/source.el
x ./cedet/ede/source.elc
x ./cedet/ede/speedbar.el
x ./cedet/ede/speedbar.elc
x ./cedet/ede/srecode.el
x ./cedet/ede/srecode.elc
x ./cedet/ede/system.el
x ./cedet/ede/system.elc
x ./cedet/ede/util.el
x ./cedet/ede/util.elc
x ./calendar/appt.el
x ./calendar/appt.elc
x ./calendar/cal-bahai.el
x ./calendar/cal-bahai.elc
x ./calendar/cal-china.el
x ./calendar/cal-china.elc
x ./calendar/cal-coptic.el
x ./calendar/cal-coptic.elc
x ./calendar/cal-dst.el
x ./calendar/cal-dst.elc
x ./calendar/cal-french.el
x ./calendar/cal-french.elc
x ./calendar/cal-hebrew.el
x ./calendar/cal-hebrew.elc
x ./calendar/cal-html.el
x ./calendar/cal-html.elc
x ./calendar/cal-islam.el
x ./calendar/cal-islam.elc
x ./calendar/cal-iso.el
x ./calendar/cal-iso.elc
x ./calendar/cal-julian.el
x ./calendar/cal-julian.elc
x ./calendar/cal-loaddefs.el
x ./calendar/cal-loaddefs.el~
x ./calendar/cal-mayan.el
x ./calendar/cal-mayan.elc
x ./calendar/cal-menu.el
x ./calendar/cal-menu.elc
x ./calendar/cal-move.el
x ./calendar/cal-move.elc
x ./calendar/cal-persia.el
x ./calendar/cal-persia.elc
x ./calendar/cal-tex.el
x ./calendar/cal-tex.elc
x ./calendar/cal-x.el
x ./calendar/cal-x.elc
x ./calendar/calendar.el
x ./calendar/calendar.elc
x ./calendar/diary-lib.el
x ./calendar/diary-lib.elc
x ./calendar/diary-loaddefs.el
x ./calendar/diary-loaddefs.el~
x ./calendar/hol-loaddefs.el
x ./calendar/hol-loaddefs.el~
x ./calendar/holidays.el
x ./calendar/holidays.elc
x ./calendar/icalendar.el
x ./calendar/icalendar.elc
x ./calendar/iso8601.el
x ./calendar/iso8601.elc
x ./calendar/lunar.el
x ./calendar/lunar.elc
x ./calendar/parse-time.el
x ./calendar/parse-time.elc
x ./calendar/solar.el
x ./calendar/solar.elc
x ./calendar/time-date.el
x ./calendar/time-date.elc
x ./calendar/timeclock.el
x ./calendar/timeclock.elc
x ./calendar/todo-mode.el
x ./calendar/todo-mode.elc
x ./calc/calc-aent.el
x ./calc/calc-aent.elc
x ./calc/calc-alg.el
x ./calc/calc-alg.elc
x ./calc/calc-arith.el
x ./calc/calc-arith.elc
x ./calc/calc-bin.el
x ./calc/calc-bin.elc
x ./calc/calc-comb.el
x ./calc/calc-comb.elc
x ./calc/calc-cplx.el
x ./calc/calc-cplx.elc
x ./calc/calc-embed.el
x ./calc/calc-embed.elc
x ./calc/calc-ext.el
x ./calc/calc-ext.elc
x ./calc/calc-fin.el
x ./calc/calc-fin.elc
x ./calc/calc-forms.el
x ./calc/calc-forms.elc
x ./calc/calc-frac.el
x ./calc/calc-frac.elc
x ./calc/calc-funcs.el
x ./calc/calc-funcs.elc
x ./calc/calc-graph.el
x ./calc/calc-graph.elc
x ./calc/calc-help.el
x ./calc/calc-help.elc
x ./calc/calc-incom.el
x ./calc/calc-incom.elc
x ./calc/calc-keypd.el
x ./calc/calc-keypd.elc
x ./calc/calc-lang.el
x ./calc/calc-lang.elc
x ./calc/calc-loaddefs.el
x ./calc/calc-macs.el
x ./calc/calc-macs.elc
x ./calc/calc-map.el
x ./calc/calc-map.elc
x ./calc/calc-math.el
x ./calc/calc-math.elc
x ./calc/calc-menu.el
x ./calc/calc-menu.elc
x ./calc/calc-misc.el
x ./calc/calc-misc.elc
x ./calc/calc-mode.el
x ./calc/calc-mode.elc
x ./calc/calc-mtx.el
x ./calc/calc-mtx.elc
x ./calc/calc-nlfit.el
x ./calc/calc-nlfit.elc
x ./calc/calc-poly.el
x ./calc/calc-poly.elc
x ./calc/calc-prog.el
x ./calc/calc-prog.elc
x ./calc/calc-rewr.el
x ./calc/calc-rewr.elc
x ./calc/calc-rules.el
x ./calc/calc-rules.elc
x ./calc/calc-sel.el
x ./calc/calc-sel.elc
x ./calc/calc-stat.el
x ./calc/calc-stat.elc
x ./calc/calc-store.el
x ./calc/calc-store.elc
x ./calc/calc-stuff.el
x ./calc/calc-stuff.elc
x ./calc/calc-trail.el
x ./calc/calc-trail.elc
x ./calc/calc-undo.el
x ./calc/calc-undo.elc
x ./calc/calc-units.el
x ./calc/calc-units.elc
x ./calc/calc-vec.el
x ./calc/calc-vec.elc
x ./calc/calc-yank.el
x ./calc/calc-yank.elc
x ./calc/calc.el
x ./calc/calc.elc
x ./calc/calcalg2.el
x ./calc/calcalg2.elc
x ./calc/calcalg3.el
x ./calc/calcalg3.elc
x ./calc/calccomp.el
x ./calc/calccomp.elc
x ./calc/calcsel2.el
x ./calc/calcsel2.elc
rm -f "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/lisp/subdirs.el"
umask 022; ./build-aux/update-subdirs "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/lisp"
subdir="/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/share/emacs/29.0.50/site-lisp" ; \
	  if [ -f "${subdir}/subdirs.el" ]; then true; else umask 022; build-aux/install-sh -c -d "${subdir}"; (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; echo "    (normal-top-level-add-subdirs-to-load-path))") > "${subdir}/subdirs.el"; fi
subdir="/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/share/emacs/site-lisp" ; \
	  if [ -f "${subdir}/subdirs.el" ]; then true; else umask 022; build-aux/install-sh -c -d "${subdir}"; (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; echo "    (normal-top-level-add-subdirs-to-load-path))") > "${subdir}/subdirs.el"; fi || true
[ -z "/usr/bin/gzip" ] || { \
	  echo "Compressing *.el etc. ..." && \
	  cd "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/lisp" && \
	  for f in `find . -name "*.elc" -print | sed 's/.elc$/.el/'`; do \
	    /usr/bin/gzip -9n "$f"; \
	  done; \
	  /usr/bin/gzip -9n "../etc/publicsuffix.txt"; \
	}
Compressing *.el etc. ...
chmod -R a+r "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/share/emacs/29.0.50" "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/etc" "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/lisp"
unset CDPATH; \
	umask 022; build-aux/install-sh -c -d "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/etc" ; \
	exp_etcdocdir=`cd "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/etc"; /bin/pwd`; \
	if [ "`cd ./etc; /bin/pwd`" != "$exp_etcdocdir" ]; \
	then \
	   docfile="DOC"; \
	   printf 'Copying %s to %s ...\n' "etc/$docfile" \
	     "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/etc"; \
	   /usr/bin/install -c -m 644 etc/${docfile} "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/etc/${docfile}"; \
	else true; fi
Copying etc/DOC to /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/etc ...
umask 022; build-aux/install-sh -c -d "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/bin"
/usr/bin/make -C lib-src install

Installing utilities run internally by Emacs.
umask 022 && ../build-aux/install-sh -c -d "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/libexec"
exp_archlibdir=`cd "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/libexec" && /bin/pwd` && \
	if [ "$exp_archlibdir" != "`/bin/pwd`" ]; then \
	  for file in hexl  movemail ; do \
	    /usr/bin/install -c  $file \
	      "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/libexec/$file" || exit; \
	  done ; \
        fi
exp_archlibdir=`cd "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/libexec" && /bin/pwd` && \
	if [ "$exp_archlibdir" != "`cd . && /bin/pwd`" ]; then \
	  for file in rcs2log; do \
	    /usr/bin/install -c ./$file \
	      "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/libexec/$file" || exit; \
	  done ; \
	fi

Installing utilities for users to run.
umask 022 && ../build-aux/install-sh -c -d "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/bin"
for file in etags ctags emacsclient  ebrowse ; do \
	  /usr/bin/install -c  ${file} \
	    "/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/bin"/` \
	      echo ${file} | sed -e 's/$//' -e 's,x,x,' \
	    ` || exit; \
	done
subdir=/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/site-lisp && if [ -f "${subdir}/subdirs.el" ]; then true; else umask 022; build-aux/install-sh -c -d "${subdir}"; (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; echo "    (normal-top-level-add-subdirs-to-load-path))") > "${subdir}/subdirs.el"; fi
rm -rf /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Resources/share
/usr/bin/make -C lib-src maybe-blessmail
make[1]: Nothing to be done for `maybe-blessmail'.
~/Desktop/emacs $ cd ..
~/Desktop $ rm -rf emacs
~/Desktop $ git clone -b master git://git.sv.gnu.org/emacs.git
Cloning into 'emacs'...
remote: Counting objects: 986609, done.        
remote: Compressing objects: 100% (175601/175601), done.        
remote: Total 986609 (delta 810984), reused 985058 (delta 809657)        
Receiving objects: 100% (986609/986609), 357.65 MiB | 733.00 KiB/s, done.
Resolving deltas: 100% (810984/810984), done.
Checking connectivity... done.
~/Desktop $ cd emacs
~/Desktop/emacs $ git apply /Users/HOME/Desktop/2022_04_24__17_33_27_762.diff
~/Desktop/emacs $ ./autogen.sh
Checking whether you have the necessary tools...
(Read INSTALL.REPO for more details on building Emacs)
Checking for autoconf (need at least version 2.65) ... ok
Your system has the required tools.
Building aclocal.m4 ...
Running 'autoreconf -fi -I m4' ...
Configuring local git repository...
git config transfer.fsckObjects 'true'
git config diff.cpp.xfuncname '!^[ 	]*[A-Za-z_][A-Za-z_0-9]*:[[:space:]]*($|/[/*])
^((::[[:space:]]*)?[A-Za-z_][A-Za-z_0-9]*[[:space:]]*\(.*)$
^((#define[[:space:]]|DEFUN).*)$'
git config diff.elisp.xfuncname '^\([^[:space:]]*def[^[:space:]]+[[:space:]]+([^()[:space:]]+)'
git config diff.m4.xfuncname '^((m4_)?define|A._DEFUN(_ONCE)?)\([^),]*'
git config diff.make.xfuncname '^([$.[:alnum:]_].*:|[[:alnum:]_]+[[:space:]]*([*:+]?[:?]?|!?)=|define .*)'
git config diff.shell.xfuncname '^([[:space:]]*[[:alpha:]_][[:alnum:]_]*[[:space:]]*\(\)|[[:alpha:]_][[:alnum:]_]*=)'
git config diff.texinfo.xfuncname '^@node[[:space:]]+([^,[:space:]][^,]+)'
Installing git hooks...
You can now run './configure'.
~/Desktop/emacs $ ./configure --with-gnutls=ifavailable
checking for xcrun... xcrun
checking for make... yes
checking for GNU Make... make
checking build system type... x86_64-apple-darwin10.8.0
checking host system type... x86_64-apple-darwin10.8.0
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... unsupported
checking for gcc option to enable C99 features... -std=gnu99
checking whether the compiler is clang... no
checking for compiler option needed when checking for declarations... none
checking for ar... ar
checking whether gcc -std=gnu99 and cc understand -c and -o together... yes
checking how to run the C preprocessor... gcc -std=gnu99 -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for wchar.h... yes
checking for minix/config.h... no
checking for linux/fs.h... no
checking for malloc.h... no
checking for sys/systeminfo.h... no
checking for sys/sysinfo.h... no
checking for coff.h... no
checking for pty.h... no
checking for sys/resource.h... yes
checking for sys/utsname.h... yes
checking for pwd.h... yes
checking for utmp.h... yes
checking for util.h... yes
checking for sanitizer/lsan_interface.h... no
checking for sys/socket.h... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for pthread.h... yes
checking for malloc/malloc.h... yes
checking for sys/un.h... yes
checking for dirent.h... yes
checking for execinfo.h... yes
checking for stdio_ext.h... no
checking for sys/vfs.h... no
checking for sys/fs_types.h... no
checking for getopt.h... yes
checking for sys/cdefs.h... yes
checking for sys/time.h... yes
checking for ieee754.h... no
checking for limits.h... yes
checking for inttypes.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for stdint.h... (cached) yes
checking for sys/select.h... yes
checking for sys/random.h... yes
checking for sys/stat.h... (cached) yes
checking whether it is safe to define __EXTENSIONS__... yes
checking whether _XOPEN_SOURCE should be defined... no
checking for Minix Amsterdam compiler... no
checking for ranlib... ranlib
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... no
checking whether gcc -std=gnu99 accepts -g3 -O2... yes
checking whether the compiler is clang... no
checking whether C compiler handles -Werror -Wunknown-warning-option... no
checking for a BSD-compatible install... /usr/bin/install -c
checking command to symlink files in the same directory... ln -s
checking for install-info... /usr/bin/install-info
checking for gzip... /usr/bin/gzip
checking for 'find' args to delete a file... -delete
checking for brew... no
checking for port... no
checking for -znocombreloc... not needed
checking whether addresses are sanitized... no
checking for library containing sqrt... none required
checking for pkg-config... no
checking for machine/soundcard.h... no
checking for sys/soundcard.h... no
checking for soundcard.h... no
checking for mmsystem.h... no
checking for _oss_ioctl in -lossaudio... no
checking for alsa >= 1.0.0... no
checking for ADDR_NO_RANDOMIZE... no
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for net/if.h... yes
checking for ifaddrs.h... yes
checking for net/if_dl.h... yes
checking for struct ifreq.ifr_flags... yes
checking for struct ifreq.ifr_hwaddr... no
checking for struct ifreq.ifr_netmask... no
checking for struct ifreq.ifr_broadaddr... yes
checking for struct ifreq.ifr_addr... yes
checking for struct ifreq.ifr_addr.sa_len... yes
checking whether gcc understands -MMD -MF... yes
checking for X... libraries /usr/X11/lib, headers 
checking AppKit/AppKit.h usability... yes
checking AppKit/AppKit.h presence... yes
checking for AppKit/AppKit.h... yes
checking for Mac OS X 10.6 or newer... yes
checking for gcc... gcc
checking whether we are using the GNU Objective C compiler... yes
checking whether gcc accepts -g... yes
checking if the Objective C compiler supports instancetype... no
checking if the Objective C compiler defaults to C99... no
checking whether malloc is Doug Lea style... no
checking for sbrk... yes
checking for __lsan_ignore_object... no
checking for fchmod... yes
checking for canonicalize_file_name... no
checking for faccessat... no
checking for realpath... yes
checking for lstat... yes
checking for readlinkat... no
checking for explicit_bzero... no
checking for memset_s... no
checking for fchmodat... no
checking for lchmod... yes
checking for fcntl... yes
checking for fdopendir... no
checking for fstatat... no
checking for fsync... yes
checking for futimens... no
checking for getrandom... no
checking for timespec_get... no
checking for gettimeofday... yes
checking for mkostemp... no
checking for pipe2... no
checking for pselect... yes
checking for readlink... yes
checking for isblank... yes
checking for iswctype... yes
checking for strtoimax... yes
checking for symlink... yes
checking for localtime_r... yes
checking for timegm... yes
checking for utimensat... no
checking for getdtablesize... yes
checking for futimes... yes
checking for futimesat... no
checking for lutimes... yes
checking for getpagesize... yes
checking for working mmap... yes
checking for main in -lXbsd... no
checking for pthread library... none needed
checking for thread support... yes
checking for librsvg-2.0 >= 2.14.0... no
checking for libwebp >= 0.6.0... no
checking for sqlite3_open_v2 in -lsqlite3... yes
checking for sqlite3_load_extension in -lsqlite3... no
checking for getaddrinfo_a in -lanl... no
checking for dbus-1 >= 1.0... no
checking for lgetfilecon in -lselinux... no
checking for gnutls >= 2.12.2... no
checking for libsystemd >= 222... no
checking for jansson >= 2.7... no
checking sys/inotify.h usability... no
checking sys/inotify.h presence... no
checking for sys/inotify.h... no
checking for libkqueue... no
checking for library containing kqueue... none required
checking for jpeglib 6b or later... no
checking for lcms2... no
checking for library containing inflateEnd... -lz
checking for dladdr... yes
checking for dlfunc... no
checking for libpng >= 1.0.0... no
checking for libpng not configured by pkg-config... no
checking tiffio.h usability... no
checking tiffio.h presence... no
checking for tiffio.h... no
checking gif_lib.h usability... no
checking gif_lib.h presence... no
checking for gif_lib.h... no
checking gpm.h usability... no
checking gpm.h presence... no
checking for gpm.h... no
checking for libxml-2.0 > 2.6.17... no
checking libxml/HTMLparser.h usability... yes
checking libxml/HTMLparser.h presence... yes
checking for libxml/HTMLparser.h... yes
checking whether HTML_PARSE_RECOVER is declared... yes
checking for htmlReadMemory in -lxml2... yes
checking for maillock in -lmail... no
checking for maillock in -llockfile... no
checking for liblockfile.so... no
checking maillock.h usability... no
checking maillock.h presence... no
checking for maillock.h... no
checking linux/seccomp.h usability... no
checking linux/seccomp.h presence... no
checking for linux/seccomp.h... no
checking linux/filter.h usability... no
checking linux/filter.h presence... no
checking for linux/filter.h... no
checking for libseccomp >= 2.5.2... no
checking for accept4... no
checking for fchdir... yes
checking for gethostname... yes
checking for getrusage... yes
checking for get_current_dir_name... no
checking for lrand48... yes
checking for random... yes
checking for rint... yes
checking for trunc... yes
checking for select... yes
checking for getpagesize... (cached) yes
checking for setlocale... yes
checking for newlocale... yes
checking for getrlimit... yes
checking for setrlimit... yes
checking for shutdown... yes
checking for pthread_sigmask... (cached) yes
checking for strsignal... yes
checking for setitimer... yes
checking for sendto... yes
checking for recvfrom... yes
checking for getsockname... yes
checking for getifaddrs... yes
checking for freeifaddrs... yes
checking for gai_strerror... yes
checking for sync... yes
checking for getpwent... yes
checking for endpwent... yes
checking for getgrent... yes
checking for endgrent... yes
checking for cfmakeraw... yes
checking for cfsetspeed... yes
checking for __executable_start... no
checking for log2... yes
checking for pthread_setname_np... yes
checking for pthread_set_name_np... no
checking whether pthread_setname_np takes a single argument... yes
checking for aligned_alloc... no
checking for posix_memalign... yes
checking whether aligned_alloc is declared... no
checking for posix_madvise... yes
checking for __builtin_frame_address... yes
checking for __builtin_unwind_init... yes
checking for _LARGEFILE_SOURCE value needed for large files... no
checking for grantpt... yes
checking for getpt... no
checking for posix_openpt... yes
checking for library containing tputs... -lncurses
checking whether -lncurses library defines BC... yes
checking for timerfd interface... no
checking whether signals can be handled on alternate stack... yes
checking valgrind/valgrind.h usability... no
checking valgrind/valgrind.h presence... no
checking for valgrind/valgrind.h... no
checking for struct unipair.unicode... no
checking for pid_t... yes
checking vfork.h usability... no
checking vfork.h presence... no
checking for vfork.h... no
checking for fork... yes
checking for vfork... yes
checking for working fork... yes
checking for working vfork... (cached) yes
checking for snprintf... yes
checking spawn.h usability... yes
checking spawn.h presence... yes
checking for spawn.h... yes
checking for posix_spawn... yes
checking for posix_spawn_file_actions_addchdir... no
checking for posix_spawn_file_actions_addchdir_np... no
checking for posix_spawnattr_setflags... yes
checking whether POSIX_SPAWN_SETSID is declared... no
checking whether GLib is linked in... no
checking for nl_langinfo and CODESET... yes
checking for nl_langinfo and _NL_PAPER_WIDTH... no
checking for mbstate_t... yes
checking for _setjmp... yes
checking for sigsetjmp... yes
checking POSIX termios... yes
checking size of speed_t... 8
checking for usable FIONREAD... yes
checking for usable SIGIO... yes
checking for struct alignment... yes
checking for typeof syntax and keyword spelling... typeof
checking for statement expressions... yes
checking whether malloc (0) returns nonnull... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for a thread-safe mkdir -p... build-aux/install-sh -c -d
checking whether lstat correctly handles trailing slash... no
checking whether // is distinct from /... no
checking whether realpath works... no
checking for getcwd... yes
checking for C/C++ restrict keyword... no
checking whether byte ordering is bigendian... no
checking whether the preprocessor supports include_next... yes
checking whether source code line length is unlimited... yes
checking if environ is properly declared... no
checking for complete errno.h... no
checking for EMULTIHOP value... yes
checking for ENOLINK value... yes
checking for EOVERFLOW value... yes
checking whether ctype.h defines __header_inline... no
checking for mode_t... yes
checking whether strmode is declared... yes
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking for getopt.h... (cached) yes
checking for getopt_long_only... yes
checking whether getopt is POSIX compatible... no
checking for struct timeval... yes
checking for wide-enough struct timeval.tv_sec member... yes
checking whether limits.h has WORD_BIT, BOOL_WIDTH etc.... no
checking whether the compiler produces multi-arch binaries... no
checking whether stdint.h conforms to C99... no
checking sys/inttypes.h usability... no
checking sys/inttypes.h presence... no
checking for sys/inttypes.h... no
checking sys/bitypes.h usability... no
checking sys/bitypes.h presence... no
checking for sys/bitypes.h... no
checking for bit size of ptrdiff_t... 64
checking for bit size of size_t... 64
checking for bit size of sig_atomic_t... 32
checking for bit size of wchar_t... 32
checking for bit size of wint_t... 32
checking whether sig_atomic_t is signed... yes
checking whether wchar_t is signed... yes
checking whether wint_t is signed... yes
checking for ptrdiff_t integer literal suffix... l
checking for size_t integer literal suffix... ul
checking for sig_atomic_t integer literal suffix... 
checking for wchar_t integer literal suffix... 
checking for wint_t integer literal suffix... 
checking whether memmem is declared... no
checking whether memrchr is declared... no
checking whether <limits.h> defines MIN and MAX... no
checking whether <sys/param.h> defines MIN and MAX... yes
checking whether time_t is signed... yes
checking whether alarm is declared... yes
checking for working mktime... no
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for struct tm.tm_gmtoff... yes
checking whether <sys/select.h> is self-contained... yes
checking for inline... inline
checking for sigset_t... yes
checking for volatile sig_atomic_t... yes
checking for sighandler_t... no
checking for wchar_t... yes
checking for good max_align_t... no
checking whether NULL can be used in arbitrary expressions... yes
checking whether fcloseall is declared... no
checking which flavor of printf attribute matches inttypes macros... system
checking whether ecvt is declared... yes
checking whether fcvt is declared... yes
checking whether gcvt is declared... yes
checking whether strnlen is declared... no
checking whether strtoimax is declared... yes
checking whether stat file-mode macros are broken... no
checking for nlink_t... yes
checking for struct timespec in <time.h>... yes
checking for TIME_UTC in <time.h>... no
checking whether execvpe is declared... no
checking whether clearerr_unlocked is declared... yes
checking whether feof_unlocked is declared... yes
checking whether ferror_unlocked is declared... yes
checking whether fflush_unlocked is declared... no
checking whether fgets_unlocked is declared... no
checking whether fputc_unlocked is declared... no
checking whether fputs_unlocked is declared... no
checking whether fread_unlocked is declared... no
checking whether fwrite_unlocked is declared... no
checking whether getc_unlocked is declared... yes
checking whether getchar_unlocked is declared... yes
checking whether putc_unlocked is declared... yes
checking whether putchar_unlocked is declared... yes
checking type of array argument to getgroups... gid_t
checking whether getdtablesize is declared... yes
checking whether malloc is ptrdiff_t safe... yes
checking whether malloc, realloc, calloc set errno on failure... yes
checking for O_CLOEXEC... no
checking for promoted mode_t type... int
checking whether the utimes function works... yes
checking for C compiler option to allow warnings... -Wno-error
checking sys/acl.h usability... yes
checking sys/acl.h presence... yes
checking for sys/acl.h... yes
checking for library containing acl_get_file... none required
checking for acl_get_file... yes
checking for acl_get_fd... yes
checking for acl_set_file... yes
checking for acl_set_fd... yes
checking for acl_free... yes
checking for acl_from_mode... no
checking for acl_from_text... yes
checking for acl_delete_def_file... yes
checking for acl_extended_file... no
checking for acl_delete_fd_np... yes
checking for acl_delete_file_np... yes
checking for acl_copy_ext_native... yes
checking for acl_create_entry_np... yes
checking for acl_to_short_text... no
checking for acl_free_text... no
checking for working acl_get_file... yes
checking acl/libacl.h usability... no
checking acl/libacl.h presence... no
checking for acl/libacl.h... no
checking for acl_entries... no
checking for ACL_FIRST_ENTRY... yes
checking for ACL_TYPE_EXTENDED... yes
checking for alloca as a compiler built-in... yes
checking for __builtin_expect... yes
checking byteswap.h usability... no
checking byteswap.h presence... no
checking for byteswap.h... no
checking for library containing clock_gettime... no
checking for clock_getres... no
checking for clock_gettime... no
checking for clock_settime... no
checking for copy_file_range... no
checking for d_type member in directory struct... yes
checking whether // is distinct from /... (cached) no
checking whether dup2 works... yes
checking for library containing backtrace_symbols_fd... none required
checking for explicit_memset... no
checking for access... yes
checking whether fcntl handles F_DUPFD correctly... yes
checking whether fcntl understands F_DUPFD_CLOEXEC... no
checking whether fdopendir is declared... no
checking for getxattr with XATTR_NAME_POSIX_ACL macros... no
checking for flexible array member... yes
checking for __fpending... no
checking whether free is known to preserve errno... no
checking for sys/mount.h... yes
checking for statvfs function (SVR4)... no
checking for two-argument statfs with statfs.f_frsize member... no
checking for 3-argument statfs function (DEC OSF/1)... no
checking for two-argument statfs with statfs.f_bsize member (AIX, 4.3BSD)... yes
checking sys/fs/s5param.h usability... no
checking sys/fs/s5param.h presence... no
checking for sys/fs/s5param.h... no
checking sys/statfs.h usability... no
checking sys/statfs.h presence... no
checking for sys/statfs.h... no
checking for statfs that truncates block counts... no
checking for getloadavg... yes
checking sys/loadavg.h usability... no
checking sys/loadavg.h presence... no
checking for sys/loadavg.h... no
checking whether getloadavg is declared... yes
checking for gettimeofday with POSIX signature... yes
checking whether the compiler supports the __inline keyword... yes
checking gmp.h usability... no
checking gmp.h presence... no
checking for gmp.h... no
checking gmp/gmp.h usability... no
checking gmp/gmp.h presence... no
checking for gmp/gmp.h... no
checking for memmem... no
checking for mempcpy... no
checking for memrchr... no
checking for library containing nanosleep... none required
checking for working nanosleep... no (mishandles large arguments)
checking for sys/pstat.h... no
checking for sys/sysmp.h... no
checking for sys/param.h... (cached) yes
checking for sys/sysctl.h... yes
checking for sched_getaffinity... no
checking for sched_getaffinity_np... no
checking for pstat_getdynamic... no
checking for sysmp... no
checking for sysctl... yes
checking whether signature of pselect conforms to POSIX... yes
checking whether pselect detects invalid fds... yes
checking whether pthread_sigmask is a macro... no
checking whether pthread_sigmask works without -lpthread... yes
checking whether pthread_sigmask returns error numbers... yes
checking whether pthread_sigmask unblocks signals correctly... guessing yes
checking whether readlink signature is correct... yes
checking whether readlink handles trailing slash correctly... no
checking whether readlink truncates results correctly... yes
checking for working re_compile_pattern... no
checking libintl.h usability... no
checking libintl.h presence... no
checking for libintl.h... no
checking whether isblank is declared... yes
checking for sig2str... no
checking for sigdescr_np... no
checking for socklen_t... yes
checking for ssize_t... yes
checking for struct stat.st_atim.tv_nsec... no
checking for struct stat.st_atimespec.tv_nsec... yes
checking for struct stat.st_birthtimespec.tv_nsec... yes
checking for working stdalign.h... no
checking for stpcpy... yes
checking whether strtoimax works... yes
checking whether symlink handles trailing slash correctly... no
checking whether localtime_r is declared... yes
checking whether localtime_r is compatible with its POSIX signature... yes
checking whether localtime works even near extrema... ./configure: line 39961: 27837 Alarm clock             ( TZ=QQQ0 ./conftest$EXEEXT ) > /dev/null 2>&1
no
checking for timezone_t... no
checking whether timer_settime is declared... no
checking for variable-length arrays... yes
checking for rawmemchr... no
checking whether open recognizes a trailing slash... no
checking for euidaccess... no
checking libgen.h usability... yes
checking libgen.h presence... yes
checking for libgen.h... yes
checking for getgroups... yes
checking for working getgroups... yes
checking for library containing eaccess... no
checking for eaccess... no
checking for group_member... no
checking for getgroups... (cached) yes
checking for working getgroups... (cached) yes
checking whether getgroups handles negative values... no
checking whether realloc (0, 0) returns nonnull... yes
checking whether getdtablesize works... yes
checking for dirfd... no
checking whether dirfd is declared... yes
checking whether dirfd is a macro... yes
checking for __mktime_internal... no
checking for timer_getoverrun... no
checking for gcc -std=gnu99 option to disable position independent executables... not needed

Configured for 'x86_64-apple-darwin10.8.0'.

  Where should the build process find the source code?    .
  What compiler should emacs be built with?               gcc -std=gnu99 -g3 -O2
  Should Emacs use the GNU version of malloc?             no
    (The GNU allocators don't work with this system configuration.)
  Should Emacs use a relocating allocator for buffers?    no
  Should Emacs use mmap(2) for buffer allocation?         no
  What window system should Emacs use?                    nextstep
  What toolkit should Emacs use?                          none
  Where do we find X Windows header files?                Standard dirs
  Where do we find X Windows libraries?                   /usr/X11/lib
  Does Emacs use -lXaw3d?                                 no
  Does Emacs use -lXpm?                                   no
  Does Emacs use -ljpeg?                                  no
  Does Emacs use -ltiff?                                  no
  Does Emacs use a gif library?                           no 
  Does Emacs use a png library?                           no 
  Does Emacs use -lrsvg-2?                                no
  Does Emacs use -lwebp?                                  no
  Does Emacs use -lsqlite3?                               yes
  Does Emacs use cairo?                                   no
  Does Emacs use -llcms2?                                 no
  Does Emacs use imagemagick?                             no
  Does Emacs use native APIs for images?                  yes (ns)
  Does Emacs support sound?                               no
  Does Emacs use -lgpm?                                   no
  Does Emacs use -ldbus?                                  no
  Does Emacs use -lgconf?                                 no
  Does Emacs use GSettings?                               no
  Does Emacs use a file notification library?             yes (kqueue)
  Does Emacs use access control lists?                    yes 
  Does Emacs use -lselinux?                               no
  Does Emacs use -lgnutls?                                no
  Does Emacs use -lxml2?                                  yes
  Does Emacs use -lfreetype?                              no
  Does Emacs use HarfBuzz?                                no
  Does Emacs use -lm17n-flt?                              no
  Does Emacs use -lotf?                                   no
  Does Emacs use -lxft?                                   no
  Does Emacs use -lsystemd?                               no
  Does Emacs use -ljansson?                               no
  Does Emacs use the GMP library?                         no
  Does Emacs directly use zlib?                           yes
  Does Emacs have dynamic modules support?                yes
  Does Emacs use toolkit scroll bars?                     yes
  Does Emacs support Xwidgets?                            no
  Does Emacs have threading support in lisp?              yes
  Does Emacs support the portable dumper?                 yes
  Does Emacs support legacy unexec dumping?               no
  Which dumping strategy does Emacs use?                  pdumper
  Does Emacs have native lisp compiler?                   no
  Does Emacs use version 2 of the the X Input Extension?  no



Run 'make' to build Emacs, then run 'src/emacs' to test it.
Run 'make install' in order to build an application bundle.
The application will go to nextstep/Emacs.app and can be run or moved
from there.
The application will be fully self-contained.

configure: creating ./config.status
config.status: creating src/verbose.mk
config.status: creating src/emacs-module.h
config.status: creating nextstep/Cocoa/Emacs.base/Contents/Info.plist
config.status: creating nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings
config.status: creating Makefile
config.status: creating lib/gnulib.mk
config.status: creating ./doc/man/emacs.1
config.status: creating lib/Makefile
config.status: creating lib-src/Makefile
config.status: creating oldXMenu/Makefile
config.status: creating doc/emacs/Makefile
config.status: creating doc/misc/Makefile
config.status: creating doc/lispintro/Makefile
config.status: creating doc/lispref/Makefile
config.status: creating src/Makefile
config.status: creating lwlib/Makefile
config.status: creating lisp/Makefile
config.status: creating leim/Makefile
config.status: creating nextstep/Makefile
config.status: creating nt/Makefile
config.status: creating test/Makefile
config.status: creating test/infra/Makefile
config.status: creating admin/charsets/Makefile
config.status: creating admin/unidata/Makefile
config.status: creating admin/grammars/Makefile
config.status: creating src/config.h
config.status: executing src/epaths.h commands
config.status: executing src/.gdbinit commands
config.status: executing doc/emacs/emacsver.texi commands
config.status: executing etc-refcards-emacsver.tex commands
configure: WARNING: This configuration installs a 'movemail' program
that does not retrieve POP3 email.  By default, Emacs 25 and earlier
installed a 'movemail' program that retrieved POP3 email via only
insecure channels, a practice that is no longer recommended but that
you can continue to support by using './configure --with-pop'.
configure: You might want to install GNU Mailutils
<https://mailutils.org> and use './configure --with-mailutils'.
~/Desktop/emacs $ make
/usr/bin/make -C lib all
  GEN      alloca.h
  GEN      byteswap.h
  GEN      dirent.h
  GEN      malloc/dynarray.gl.h
  GEN      malloc/dynarray-skeleton.gl.h
  GEN      errno.h
  GEN      fcntl.h
  GEN      getopt.h
  GEN      getopt-cdefs.h
  GEN      ieee754.h
  GEN      inttypes.h
echo '#include "mini-gmp.h"' > gmp.h-t
mv gmp.h-t gmp.h
  GEN      limits.h
  GEN      malloc/scratch_buffer.gl.h
  GEN      signal.h
  GEN      stdalign.h
  GEN      stddef.h
  GEN      stdint.h
  GEN      stdio.h
  GEN      stdlib.h
  GEN      string.h
  GEN      sys/random.h
  GEN      sys/select.h
  GEN      sys/stat.h
  GEN      sys/time.h
  GEN      sys/types.h
  GEN      time.h
  GEN      unistd.h
  CC       fingerprint.o
  CC       acl_entries.o
  CC       memmem.o
  CC       mktime.o
mktime.c: In function 'mktime_internal':
mktime.c:468: warning: comparison is always false due to limited range of data type
mktime.c:468: warning: comparison is always false due to limited range of data type
mktime.c:468: warning: comparison is always false due to limited range of data type
mktime.c:468: warning: comparison is always false due to limited range of data type
mktime.c:468: warning: comparison is always false due to limited range of data type
mktime.c:468: warning: comparison is always false due to limited range of data type
mktime.c:507: warning: comparison is always false due to limited range of data type
mktime.c:507: warning: comparison is always false due to limited range of data type
  CC       acl-errno-valid.o
  CC       acl-internal.o
  CC       get-permissions.o
  CC       set-permissions.o
  CC       allocator.o
  CC       openat-proc.o
  CC       binary-io.o
  CC       c-ctype.o
  CC       c-strcasecmp.o
  CC       c-strncasecmp.o
  CC       canonicalize-lgpl.o
  CC       careadlinkat.o
  CC       cloexec.o
  CC       close-stream.o
  CC       copy-file-range.o
  CC       count-leading-zeros.o
  CC       count-one-bits.o
  CC       count-trailing-zeros.o
  CC       md5-stream.o
  CC       md5.o
  CC       sha1.o
  CC       sha256.o
  CC       sha512.o
  CC       dtoastr.o
  CC       dtotimespec.o
  CC       malloc/dynarray_at_failure.o
  CC       malloc/dynarray_emplace_enlarge.o
  CC       malloc/dynarray_finalize.o
  CC       malloc/dynarray_resize.o
  CC       malloc/dynarray_resize_clear.o
  CC       euidaccess.o
  CC       explicit_bzero.o
  CC       faccessat.o
  CC       fchmodat.o
  CC       fcntl.o
  CC       fdopendir.o
  CC       file-has-acl.o
  CC       filemode.o
  CC       filevercmp.o
  CC       fpending.o
  CC       free.o
  CC       fstatat.o
  CC       fsusage.o
  CC       futimens.o
  CC       getgroups.o
  CC       getopt.o
  CC       getopt1.o
  CC       getrandom.o
  CC       gettime.o
  CC       group-member.o
group-member.c: In function 'get_group_info':
group-member.c:57: warning: comparison is always false due to limited range of data type
group-member.c:57: warning: comparison is always false due to limited range of data type
  CC       mini-gmp-gnulib.o
  CC       lstat.o
  CC       mempcpy.o
  CC       memrchr.o
  CC       mkostemp.o
  CC       nanosleep.o
  CC       nproc.o
  CC       nstrftime.o
nstrftime.c: In function '__strftime_internal':
nstrftime.c:688: warning: comparison is always true due to limited range of data type
nstrftime.c:688: warning: comparison is always true due to limited range of data type
nstrftime.c:688: warning: comparison is always false due to limited range of data type
nstrftime.c:688: warning: comparison is always true due to limited range of data type
nstrftime.c:688: warning: comparison is always false due to limited range of data type
nstrftime.c:688: warning: comparison is always true due to limited range of data type
nstrftime.c:688: warning: comparison is always true due to limited range of data type
nstrftime.c:688: warning: comparison is always false due to limited range of data type
nstrftime.c:688: warning: comparison is always true due to limited range of data type
nstrftime.c:688: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
nstrftime.c:689: warning: comparison is always false due to limited range of data type
  CC       open.o
  CC       pipe2.o
  CC       qcopy-acl.o
  CC       rawmemchr.o
  CC       readlink.o
  CC       readlinkat.o
  CC       regex.o
  CC       malloc/scratch_buffer_dupfree.o
  CC       malloc/scratch_buffer_grow.o
  CC       malloc/scratch_buffer_grow_preserve.o
  CC       malloc/scratch_buffer_set_array_size.o
  CC       sig2str.o
  CC       sigdescr_np.o
  CC       stat-time.o
  CC       strnlen.o
  CC       symlink.o
  CC       tempname.o
  CC       time_rz.o
  CC       timegm.o
  CC       timespec.o
  CC       timespec-add.o
  CC       timespec-sub.o
  CC       u64.o
  CC       unistd.o
  CC       utimens.o
  CC       utimensat.o
  CC       openat-die.o
  CC       save-cwd.o
  AR       libgnu.a
/usr/bin/ranlib: file: libgnu.a(u64.o) has no symbols
/usr/bin/ranlib: file: libgnu.a(unistd.o) has no symbols
ranlib: file: libgnu.a(u64.o) has no symbols
ranlib: file: libgnu.a(unistd.o) has no symbols
/usr/bin/make -C lib-src all
  CCLD     etags
  CCLD     ctags
  CCLD     emacsclient
  CCLD     ebrowse
  CCLD     hexl
  CC       pop.o
  CCLD     movemail
  CCLD     make-docfile
  CCLD     make-fingerprint
/usr/bin/make -C src VCSWITNESS='$(srcdir)/../.git/logs/HEAD' BIN_DESTDIR=''/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/'' \
		 ELN_DESTDIR='/Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Frameworks/' all
  GEN      lisp.mk
  GEN      globals.h
  CC       dispnew.o
dispnew.c: In function 'realloc_glyph_pool':
dispnew.c:1388: warning: comparison is always false due to limited range of data type
dispnew.c:1388: warning: comparison is always false due to limited range of data type
dispnew.c:1388: warning: comparison is always false due to limited range of data type
dispnew.c:1388: warning: comparison is always false due to limited range of data type
dispnew.c: In function 'init_display_interactive':
dispnew.c:6551: warning: comparison is always true due to limited range of data type
dispnew.c:6551: warning: comparison is always false due to limited range of data type
dispnew.c:6551: warning: comparison is always false due to limited range of data type
dispnew.c:6551: warning: comparison is always false due to limited range of data type
dispnew.c:6551: warning: comparison is always false due to limited range of data type
dispnew.c:6551: warning: comparison is always false due to limited range of data type
dispnew.c:6551: warning: comparison is always true due to limited range of data type
dispnew.c:6551: warning: comparison is always false due to limited range of data type
dispnew.c:6551: warning: comparison is always false due to limited range of data type
dispnew.c:6551: warning: comparison is always false due to limited range of data type
dispnew.c:6551: warning: comparison is always false due to limited range of data type
dispnew.c:6551: warning: comparison is always false due to limited range of data type
dispnew.c:6552: warning: comparison is always false due to limited range of data type
dispnew.c:6552: warning: comparison is always false due to limited range of data type
dispnew.c:6552: warning: comparison is always false due to limited range of data type
dispnew.c:6552: warning: comparison is always false due to limited range of data type
  CC       frame.o
frame.c: In function 'check_frame_pixels':
frame.c:3689: warning: comparison is always false due to limited range of data type
frame.c:3689: warning: comparison is always false due to limited range of data type
  CC       scroll.o
  CC       xdisp.o
xdisp.c: In function 'fill_column_indicator_column':
xdisp.c:606: warning: comparison is always false due to limited range of data type
xdisp.c:606: warning: comparison is always false due to limited range of data type
xdisp.c:606: warning: comparison is always false due to limited range of data type
xdisp.c:606: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
xdisp.c:607: warning: comparison is always false due to limited range of data type
  CC       menu.o
menu.c: In function 'find_and_return_menu_selection':
menu.c:984: warning: comparison is always true due to limited range of data type
menu.c:984: warning: comparison is always true due to limited range of data type
menu.c:984: warning: comparison is always false due to limited range of data type
menu.c:984: warning: comparison is always true due to limited range of data type
menu.c:984: warning: comparison is always false due to limited range of data type
menu.c:984: warning: comparison is always true due to limited range of data type
menu.c:984: warning: comparison is always true due to limited range of data type
menu.c:984: warning: comparison is always false due to limited range of data type
menu.c:984: warning: comparison is always true due to limited range of data type
menu.c:984: warning: comparison is always false due to limited range of data type
menu.c: In function 'x_popup_menu_1':
menu.c:1278: warning: comparison is always true due to limited range of data type
menu.c:1283: warning: comparison is always true due to limited range of data type
  CC       window.o
  CC       charset.o
  CC       coding.o
  CC       category.o
  CC       ccl.o
ccl.c: In function 'ccl_driver':
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1146: warning: comparison is always false due to limited range of data type
ccl.c:1147: warning: comparison is always false due to limited range of data type
ccl.c:1147: warning: comparison is always false due to limited range of data type
ccl.c:1147: warning: comparison is always false due to limited range of data type
ccl.c:1147: warning: comparison is always false due to limited range of data type
ccl.c:1147: warning: comparison is always false due to limited range of data type
ccl.c:1147: warning: comparison is always false due to limited range of data type
ccl.c:1148: warning: comparison is always false due to limited range of data type
ccl.c:1148: warning: comparison is always false due to limited range of data type
ccl.c:1148: warning: comparison is always false due to limited range of data type
ccl.c:1148: warning: comparison is always false due to limited range of data type
ccl.c:1184: warning: comparison is always false due to limited range of data type
ccl.c:1184: warning: comparison is always false due to limited range of data type
ccl.c:1184: warning: comparison is always true due to limited range of data type
ccl.c:1184: warning: comparison is always false due to limited range of data type
ccl.c:1184: warning: comparison is always false due to limited range of data type
ccl.c:1184: warning: comparison is always false due to limited range of data type
ccl.c:1184: warning: comparison is always true due to limited range of data type
ccl.c:1184: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1241: warning: comparison is always false due to limited range of data type
ccl.c:1242: warning: comparison is always false due to limited range of data type
ccl.c:1242: warning: comparison is always false due to limited range of data type
ccl.c:1242: warning: comparison is always false due to limited range of data type
ccl.c:1242: warning: comparison is always false due to limited range of data type
ccl.c:1242: warning: comparison is always false due to limited range of data type
ccl.c:1242: warning: comparison is always false due to limited range of data type
ccl.c:1243: warning: comparison is always false due to limited range of data type
ccl.c:1243: warning: comparison is always false due to limited range of data type
ccl.c:1243: warning: comparison is always false due to limited range of data type
ccl.c:1243: warning: comparison is always false due to limited range of data type
ccl.c:1278: warning: comparison is always false due to limited range of data type
ccl.c:1278: warning: comparison is always false due to limited range of data type
ccl.c:1278: warning: comparison is always true due to limited range of data type
ccl.c:1278: warning: comparison is always false due to limited range of data type
ccl.c:1278: warning: comparison is always false due to limited range of data type
ccl.c:1278: warning: comparison is always false due to limited range of data type
ccl.c:1278: warning: comparison is always true due to limited range of data type
ccl.c:1278: warning: comparison is always false due to limited range of data type
ccl.c:1368: warning: comparison is always true due to limited range of data type
ccl.c:1368: warning: comparison is always true due to limited range of data type
ccl.c:1397: warning: comparison is always true due to limited range of data type
ccl.c:1397: warning: comparison is always true due to limited range of data type
ccl.c: In function 'Fccl_execute_on_string':
ccl.c:2159: warning: comparison is always false due to limited range of data type
ccl.c:2159: warning: comparison is always false due to limited range of data type
  CC       character.o
character.c: In function 'char_width':
character.c:249: warning: comparison is always false due to limited range of data type
character.c:249: warning: comparison is always false due to limited range of data type
character.c:249: warning: comparison is always false due to limited range of data type
character.c:249: warning: comparison is always false due to limited range of data type
character.c:249: warning: comparison is always false due to limited range of data type
character.c:249: warning: comparison is always false due to limited range of data type
  CC       chartab.o
  CC       bidi.o
bidi.c: In function 'bidi_move_to_visually_next':
bidi.c:3567: warning: comparison is always true due to limited range of data type
  CC       cm.o
  CC       term.o
term.c: In function 'encode_terminal_code':
term.c:536: warning: comparison is always true due to limited range of data type
term.c:536: warning: comparison is always true due to limited range of data type
term.c:536: warning: comparison is always false due to limited range of data type
term.c:536: warning: comparison is always true due to limited range of data type
term.c:536: warning: comparison is always false due to limited range of data type
term.c:536: warning: comparison is always true due to limited range of data type
term.c:536: warning: comparison is always true due to limited range of data type
term.c:536: warning: comparison is always false due to limited range of data type
term.c:536: warning: comparison is always true due to limited range of data type
term.c:536: warning: comparison is always false due to limited range of data type
  CC       terminal.o
  CC       xfaces.o
  CC       emacs.o
  CC       keyboard.o
  CC       macros.o
  CC       keymap.o
  CC       sysdep.o
  CC       bignum.o
bignum.c: In function 'emacs_mpz_pow_ui':
bignum.c:357: warning: comparison is always false due to limited range of data type
bignum.c:357: warning: comparison is always false due to limited range of data type
  CC       buffer.o
  CC       filelock.o
  CC       insdel.o
  CC       marker.o
  CC       minibuf.o
  CC       fileio.o
  CC       dired.o
  CC       cmds.o
  CC       casetab.o
  CC       casefiddle.o
  CC       indent.o
  CC       search.o
  CC       regex-emacs.o
regex-emacs.c: In function 'regex_compile':
regex-emacs.c:2210: warning: comparison is always true due to limited range of data type
regex-emacs.c:2210: warning: comparison is always true due to limited range of data type
regex-emacs.c:2210: warning: comparison is always false due to limited range of data type
regex-emacs.c:2210: warning: comparison is always true due to limited range of data type
regex-emacs.c:2210: warning: comparison is always false due to limited range of data type
regex-emacs.c:2210: warning: comparison is always true due to limited range of data type
regex-emacs.c:2210: warning: comparison is always true due to limited range of data type
regex-emacs.c:2210: warning: comparison is always false due to limited range of data type
regex-emacs.c:2210: warning: comparison is always true due to limited range of data type
regex-emacs.c:2210: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
regex-emacs.c:2211: warning: comparison is always false due to limited range of data type
  CC       undo.o
  CC       alloc.o
  CC       pdumper.o
  CC       data.o
data.c: In function 'bignum_arith_driver':
data.c:3152: warning: assignment from incompatible pointer type
data.c:3174: warning: assignment from incompatible pointer type
data.c: In function 'Flogcount':
data.c:3488: warning: assignment from incompatible pointer type
  GEN      buildobj.h
  CC       doc.o
  CC       editfns.o
editfns.c: In function 'str2num':
editfns.c:2988: warning: comparison is always false due to limited range of data type
editfns.c:2988: warning: comparison is always false due to limited range of data type
editfns.c:2988: warning: comparison is always false due to limited range of data type
editfns.c:2988: warning: comparison is always false due to limited range of data type
editfns.c:2988: warning: comparison is always false due to limited range of data type
editfns.c:2988: warning: comparison is always false due to limited range of data type
  CC       callint.o
  CC       eval.o
eval.c: In function 'Fapply':
eval.c:2528: warning: comparison is always false due to limited range of data type
eval.c:2528: warning: comparison is always false due to limited range of data type
eval.c:2528: warning: comparison is always true due to limited range of data type
eval.c:2528: warning: comparison is always true due to limited range of data type
eval.c:2528: warning: comparison is always false due to limited range of data type
eval.c:2528: warning: comparison is always true due to limited range of data type
eval.c:2528: warning: comparison is always false due to limited range of data type
eval.c:2528: warning: comparison is always true due to limited range of data type
eval.c:2528: warning: comparison is always true due to limited range of data type
eval.c:2528: warning: comparison is always false due to limited range of data type
eval.c:2528: warning: comparison is always true due to limited range of data type
eval.c:2528: warning: comparison is always false due to limited range of data type
eval.c: In function 'Fsignal':
eval.c:1653: warning: 'noreturn' function does return
  CC       floatfns.o
floatfns.c: In function 'rescale_for_division':
floatfns.c:389: warning: assignment from incompatible pointer type
floatfns.c:397: warning: assignment from incompatible pointer type
  CC       fns.o
fns.c: In function 'Ffillarray':
fns.c:2678: warning: comparison is always false due to limited range of data type
fns.c:2678: warning: comparison is always false due to limited range of data type
  CC       sort.o
  CC       font.o
  CC       print.o
  CC       lread.o
lread.c: In function 'read1':
lread.c:3444: warning: comparison is always false due to limited range of data type
lread.c:3444: warning: comparison is always false due to limited range of data type
lread.c:3444: warning: comparison is always false due to limited range of data type
lread.c:3444: warning: comparison is always false due to limited range of data type
lread.c:3444: warning: comparison is always false due to limited range of data type
lread.c:3444: warning: comparison is always false due to limited range of data type
  CC       emacs-module.o
  CC       syntax.o
  CC       bytecode.o
  CC       comp.o
  CC       dynlib.o
  CC       process.o
  CC       gnutls.o
  CC       callproc.o
  CC       region-cache.o
  CC       sound.o
  CC       timefns.o
timefns.c: In function 'frac_to_double':
timefns.c:617: warning: assignment from incompatible pointer type
timefns.c:625: warning: assignment from incompatible pointer type
timefns.c: In function 'lisp_to_timespec':
timefns.c:921: warning: initialization from incompatible pointer type
timefns.c: In function 'time_cmp':
timefns.c:1242: warning: assignment from incompatible pointer type
timefns.c:1243: warning: assignment from incompatible pointer type
timefns.c: In function 'Fdecode_time':
timefns.c:1524: warning: comparison is always true due to limited range of data type
timefns.c:1524: warning: comparison is always true due to limited range of data type
timefns.c:1548: warning: comparison is always false due to limited range of data type
timefns.c:1548: warning: comparison is always false due to limited range of data type
timefns.c: In function 'check_tm_member':
timefns.c:1594: warning: comparison is always false due to limited range of data type
timefns.c:1594: warning: comparison is always false due to limited range of data type
  CC       atimer.o
  CC       doprnt.o
doprnt.c: In function 'parse_format_integer':
doprnt.c:137: warning: comparison is always true due to limited range of data type
doprnt.c:137: warning: comparison is always true due to limited range of data type
doprnt.c:137: warning: comparison is always false due to limited range of data type
doprnt.c:137: warning: comparison is always true due to limited range of data type
doprnt.c:137: warning: comparison is always false due to limited range of data type
doprnt.c:137: warning: comparison is always true due to limited range of data type
doprnt.c:137: warning: comparison is always true due to limited range of data type
doprnt.c:137: warning: comparison is always false due to limited range of data type
doprnt.c:137: warning: comparison is always true due to limited range of data type
doprnt.c:137: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
doprnt.c:138: warning: comparison is always false due to limited range of data type
  CC       intervals.o
  CC       textprop.o
  CC       composite.o
  CC       xml.o
  CC       lcms.o
  CC       kqueue.o
  CC       profiler.o
  CC       decompress.o
  CC       thread.o
  CC       systhread.o
  CC       sqlite.o
  CC       fontset.o
  CC       fringe.o
  CC       image.o
image.c: In function 'xbm_scan':
image.c:3781: warning: comparison is always true due to limited range of data type
image.c:3781: warning: comparison is always true due to limited range of data type
image.c:3781: warning: comparison is always false due to limited range of data type
image.c:3781: warning: comparison is always true due to limited range of data type
image.c:3781: warning: comparison is always false due to limited range of data type
image.c:3781: warning: comparison is always true due to limited range of data type
image.c:3781: warning: comparison is always true due to limited range of data type
image.c:3781: warning: comparison is always false due to limited range of data type
image.c:3781: warning: comparison is always true due to limited range of data type
image.c:3781: warning: comparison is always false due to limited range of data type
image.c:3791: warning: comparison is always true due to limited range of data type
image.c:3791: warning: comparison is always true due to limited range of data type
image.c:3791: warning: comparison is always false due to limited range of data type
image.c:3791: warning: comparison is always true due to limited range of data type
image.c:3791: warning: comparison is always false due to limited range of data type
image.c:3791: warning: comparison is always true due to limited range of data type
image.c:3791: warning: comparison is always true due to limited range of data type
image.c:3791: warning: comparison is always false due to limited range of data type
image.c:3791: warning: comparison is always true due to limited range of data type
image.c:3791: warning: comparison is always false due to limited range of data type
image.c:3802: warning: comparison is always true due to limited range of data type
image.c:3802: warning: comparison is always true due to limited range of data type
image.c:3802: warning: comparison is always false due to limited range of data type
image.c:3802: warning: comparison is always true due to limited range of data type
image.c:3802: warning: comparison is always false due to limited range of data type
image.c:3802: warning: comparison is always true due to limited range of data type
image.c:3802: warning: comparison is always true due to limited range of data type
image.c:3802: warning: comparison is always false due to limited range of data type
image.c:3802: warning: comparison is always true due to limited range of data type
image.c:3802: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3803: warning: comparison is always false due to limited range of data type
image.c:3847: warning: comparison is always true due to limited range of data type
image.c:3847: warning: comparison is always true due to limited range of data type
image.c:3847: warning: comparison is always false due to limited range of data type
image.c:3847: warning: comparison is always true due to limited range of data type
image.c:3847: warning: comparison is always false due to limited range of data type
image.c:3847: warning: comparison is always true due to limited range of data type
image.c:3847: warning: comparison is always true due to limited range of data type
image.c:3847: warning: comparison is always false due to limited range of data type
image.c:3847: warning: comparison is always true due to limited range of data type
image.c:3847: warning: comparison is always false due to limited range of data type
image.c: In function 'image_to_emacs_colors':
image.c:5914: warning: comparison is always true due to limited range of data type
image.c:5914: warning: comparison is always false due to limited range of data type
image.c:5914: warning: comparison is always false due to limited range of data type
image.c:5915: warning: comparison is always false due to limited range of data type
image.c:5915: warning: comparison is always false due to limited range of data type
image.c: In function 'image_detect_edges':
image.c:6058: warning: comparison is always true due to limited range of data type
image.c:6058: warning: comparison is always false due to limited range of data type
image.c:6058: warning: comparison is always false due to limited range of data type
image.c:6059: warning: comparison is always false due to limited range of data type
image.c:6059: warning: comparison is always false due to limited range of data type
  CC       nsterm.o
nsterm.m: In function '-[EmacsWindow initWithEmacsFrame:fullscreen:screen:]':
nsterm.m:8476: warning: 'EmacsWindow' may not respond to '-setTabbingMode:'
nsterm.m:8476: warning: (Messages without a matching method signature
nsterm.m:8476: warning: will be assumed to return 'id' and accept
nsterm.m:8476: warning: '...' as arguments.)
nsterm.m: In function '-[EmacsWindow setParentChildRelationships]':
nsterm.m:8549: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
nsterm.m:8551: warning: 'EmacsWindow' may not respond to '-setAccessibilitySubrole:'
  CC       nsfns.o
  CC       nsmenu.o
  CC       nsselect.o
  CC       nsimage.o
nsimage.m: In function '+[EmacsImage allocInitFromFile:]':
nsimage.m:275: warning: 'NSArray' may not respond to '-firstObject'
nsimage.m:275: warning: (Messages without a matching method signature
nsimage.m:275: warning: will be assumed to return 'id' and accept
nsimage.m:275: warning: '...' as arguments.)
  CC       macfont.o
macfont.m: In function 'mac_font_shape_1':
macfont.m:427: warning: 'NSLayoutManager' may not respond to '-getGlyphsInRange:glyphs:properties:characterIndexes:bidiLevels:'
macfont.m:427: warning: (Messages without a matching method signature
macfont.m:427: warning: will be assumed to return 'id' and accept
macfont.m:427: warning: '...' as arguments.)
  CC       terminfo.o
  CC       lastfile.o
/usr/bin/make -C ../admin/charsets all
  GEN      ../../etc/charsets/8859-2.map
  GEN      ../../etc/charsets/8859-3.map
  GEN      ../../etc/charsets/8859-4.map
  GEN      ../../etc/charsets/8859-5.map
  GEN      ../../etc/charsets/8859-6.map
  GEN      ../../etc/charsets/8859-7.map
  GEN      ../../etc/charsets/8859-8.map
  GEN      ../../etc/charsets/8859-9.map
  GEN      ../../etc/charsets/8859-10.map
  GEN      ../../etc/charsets/8859-11.map
  GEN      ../../etc/charsets/8859-13.map
  GEN      ../../etc/charsets/8859-14.map
  GEN      ../../etc/charsets/8859-15.map
  GEN      ../../etc/charsets/8859-16.map
  GEN      ../../etc/charsets/IBM037.map
  GEN      ../../etc/charsets/IBM038.map
  GEN      ../../etc/charsets/IBM256.map
  GEN      ../../etc/charsets/IBM273.map
  GEN      ../../etc/charsets/IBM274.map
  GEN      ../../etc/charsets/IBM275.map
  GEN      ../../etc/charsets/IBM277.map
  GEN      ../../etc/charsets/IBM278.map
  GEN      ../../etc/charsets/IBM280.map
  GEN      ../../etc/charsets/IBM281.map
  GEN      ../../etc/charsets/IBM284.map
  GEN      ../../etc/charsets/IBM285.map
  GEN      ../../etc/charsets/IBM290.map
  GEN      ../../etc/charsets/IBM297.map
  GEN      ../../etc/charsets/IBM420.map
  GEN      ../../etc/charsets/IBM423.map
  GEN      ../../etc/charsets/IBM424.map
  GEN      ../../etc/charsets/IBM437.map
  GEN      ../../etc/charsets/IBM500.map
  GEN      ../../etc/charsets/IBM850.map
  GEN      ../../etc/charsets/IBM851.map
  GEN      ../../etc/charsets/IBM852.map
  GEN      ../../etc/charsets/IBM855.map
  GEN      ../../etc/charsets/IBM856.map
  GEN      ../../etc/charsets/IBM857.map
  GEN      ../../etc/charsets/IBM860.map
  GEN      ../../etc/charsets/IBM861.map
  GEN      ../../etc/charsets/IBM862.map
  GEN      ../../etc/charsets/IBM863.map
  GEN      ../../etc/charsets/IBM864.map
  GEN      ../../etc/charsets/IBM865.map
  GEN      ../../etc/charsets/IBM866.map
  GEN      ../../etc/charsets/IBM868.map
  GEN      ../../etc/charsets/IBM869.map
  GEN      ../../etc/charsets/IBM870.map
  GEN      ../../etc/charsets/IBM871.map
  GEN      ../../etc/charsets/IBM874.map
  GEN      ../../etc/charsets/IBM875.map
  GEN      ../../etc/charsets/IBM880.map
  GEN      ../../etc/charsets/IBM891.map
  GEN      ../../etc/charsets/IBM903.map
  GEN      ../../etc/charsets/IBM904.map
  GEN      ../../etc/charsets/IBM905.map
  GEN      ../../etc/charsets/IBM918.map
  GEN      ../../etc/charsets/IBM1004.map
  GEN      ../../etc/charsets/IBM1026.map
  GEN      ../../etc/charsets/IBM1047.map
  GEN      ../../etc/charsets/CP737.map
  GEN      ../../etc/charsets/CP775.map
  GEN      ../../etc/charsets/CP1125.map
  GEN      ../../etc/charsets/CP1250.map
  GEN      ../../etc/charsets/CP1251.map
  GEN      ../../etc/charsets/CP1252.map
  GEN      ../../etc/charsets/CP1253.map
  GEN      ../../etc/charsets/CP1254.map
  GEN      ../../etc/charsets/CP1255.map
  GEN      ../../etc/charsets/CP1256.map
  GEN      ../../etc/charsets/CP1257.map
  GEN      ../../etc/charsets/CP1258.map
  GEN      ../../etc/charsets/CP10007.map
  GEN      ../../etc/charsets/CP720.map
  GEN      ../../etc/charsets/CP858.map
  GEN      ../../etc/charsets/GB2312.map
  GEN      ../../etc/charsets/GBK.map
  GEN      ../../etc/charsets/GB180302.map
  GEN      ../../etc/charsets/GB180304.map
  GEN      ../../etc/charsets/BIG5.map
  GEN      ../../etc/charsets/BIG5-HKSCS.map
  GEN      ../../etc/charsets/CNS-1.map
  GEN      ../../etc/charsets/CNS-2.map
  GEN      ../../etc/charsets/CNS-3.map
  GEN      ../../etc/charsets/CNS-4.map
  GEN      ../../etc/charsets/CNS-5.map
  GEN      ../../etc/charsets/CNS-6.map
  GEN      ../../etc/charsets/CNS-7.map
  GEN      ../../etc/charsets/CNS-F.map
  GEN      ../../etc/charsets/JISX0201.map
  GEN      ../../etc/charsets/JISX0208.map
  GEN      ../../etc/charsets/JISX0212.map
  GEN      ../../etc/charsets/JISX2131.map
  GEN      ../../etc/charsets/JISX2132.map
  GEN      ../../etc/charsets/JISC6226.map
  GEN      ../../etc/charsets/CP932-2BYTE.map
  GEN      ../../etc/charsets/JISX213A.map
  GEN      ../../etc/charsets/KSC5601.map
  GEN      ../../etc/charsets/KSC5636.map
  GEN      ../../etc/charsets/JOHAB.map
  GEN      ../../etc/charsets/KOI-8.map
  GEN      ../../etc/charsets/KOI8-R.map
  GEN      ../../etc/charsets/KOI8-U.map
  GEN      ../../etc/charsets/KOI8-T.map
  GEN      ../../etc/charsets/ALTERNATIVNYJ.map
  GEN      ../../etc/charsets/MIK.map
  GEN      ../../etc/charsets/PTCP154.map
  GEN      ../../etc/charsets/TIS-620.map
  GEN      ../../etc/charsets/VISCII.map
  GEN      ../../etc/charsets/VSCII.map
  GEN      ../../etc/charsets/VSCII-2.map
  GEN      ../../etc/charsets/KA-PS.map
  GEN      ../../etc/charsets/KA-ACADEMY.map
  GEN      ../../etc/charsets/HP-ROMAN8.map
  GEN      ../../etc/charsets/NEXTSTEP.map
  GEN      ../../etc/charsets/MACINTOSH.map
  GEN      ../../etc/charsets/EBCDICUK.map
  GEN      ../../etc/charsets/EBCDICUS.map
  GEN      ../../etc/charsets/stdenc.map
  GEN      ../../etc/charsets/symbol.map
  GEN      ../../etc/charsets/CP949-2BYTE.map
  GEN      ../../etc/charsets/BIG5-1.map
  GEN      ../../etc/charsets/BIG5-2.map
  GEN      ../../etc/charsets/MULE-ethiopic.map
  GEN      ../../etc/charsets/MULE-ipa.map
  GEN      ../../etc/charsets/MULE-is13194.map
  GEN      ../../etc/charsets/MULE-sisheng.map
  GEN      ../../etc/charsets/MULE-tibetan.map
  GEN      ../../etc/charsets/MULE-lviscii.map
  GEN      ../../etc/charsets/MULE-uviscii.map
  GEN      ../../lisp/international/cp51932.el
  GEN      ../../lisp/international/eucjp-ms.el
  GEN      charsets.stamp
/usr/bin/make -C ../admin/unidata charscript.el
  GEN      ../../lisp/international/charscript.el
/usr/bin/make -C ../admin/unidata emoji-zwj.el
  GEN      ../../lisp/international/emoji-zwj.el
  CCLD     temacs
../build-aux/install-sh -c -d ../etc
/usr/bin/make -C ../lisp update-subdirs
cp -f temacs bootstrap-emacs
rm -f bootstrap-emacs.pdmp
./temacs --batch  -l loadup --temacs=pbootstrap \
		--bin-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/ --eln-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Frameworks/
Loading loadup.el (source)...
Dump mode: pbootstrap
Using load-path (/Users/HOME/Desktop/emacs/lisp /Users/HOME/Desktop/emacs/lisp/emacs-lisp /Users/HOME/Desktop/emacs/lisp/progmodes /Users/HOME/Desktop/emacs/lisp/language /Users/HOME/Desktop/emacs/lisp/international /Users/HOME/Desktop/emacs/lisp/textmodes /Users/HOME/Desktop/emacs/lisp/vc)
Loading emacs-lisp/debug-early (source)...
Loading emacs-lisp/byte-run (source)...
Loading emacs-lisp/backquote (source)...
Loading subr (source)...
Loading keymap (source)...
Loading version (source)...
Loading widget (source)...
Loading custom (source)...
Loading emacs-lisp/map-ynp (source)...
Loading international/mule (source)...
Loading international/mule-conf (source)...
Loading env (source)...
Loading format (source)...
Loading bindings (source)...
Loading window (source)...
Loading /Users/HOME/Desktop/emacs/lisp/files.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/macroexp.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/pcase.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/macroexp.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/cus-face.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/faces.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/ldefs-boot.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/button.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/cl-preloaded.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/oclosure.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/obarray.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/abbrev.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/help.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/jka-cmpr-hook.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/epa-hook.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/international/mule-cmds.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/case-table.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/international/characters.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/international/charscript.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/international/emoji-zwj.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/composite.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/chinese.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/cyrillic.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/indian.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/sinhala.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/english.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/ethiopic.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/european.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/czech.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/slovak.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/romanian.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/greek.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/hebrew.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/international/cp51932.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/international/eucjp-ms.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/japanese.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/korean.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/lao.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/tai-viet.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/thai.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/tibetan.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/vietnamese.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/misc-lang.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/utf-8-lang.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/georgian.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/khmer.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/burmese.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/language/cham.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/indent.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/cl-generic.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/simple.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/nadvice.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/minibuffer.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/frame.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/startup.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/term/tty-colors.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/font-core.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/syntax.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/font-lock.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/jit-lock.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/mouse.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/scroll-bar.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/select.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/timer.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/easymenu.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/isearch.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/rfn-eshadow.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/menu-bar.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/tab-bar.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/lisp.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/textmodes/page.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/register.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/textmodes/paragraphs.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/progmodes/prog-mode.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/lisp-mode.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/textmodes/text-mode.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/textmodes/fill.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/newcomment.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/replace.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/tabulated-list.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/buff-menu.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/fringe.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/regexp-opt.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/image.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/international/fontset.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/dnd.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/tool-bar.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/term/common-win.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/mwheel.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/progmodes/elisp-mode.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/float-sup.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/vc/vc-hooks.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/vc/ediff-hook.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/uniquify.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/electric.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/paren.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/shorthands.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/emacs-lisp/eldoc.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/cus-start.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/tooltip.el (source)...
Loading /Users/HOME/Desktop/emacs/lisp/international/iso-transl.el (source)...
Finding pointers to doc strings...
Finding pointers to doc strings...done
Dumping under the name bootstrap-emacs.pdmp
Dumping fingerprint: c96783675af3ffab2d33508260eed7bdffb273d7c38f03952eece27a78b6b9bd
Dump complete
Byte counts: header=100 hot=14496884 discardable=139408 cold=10224888
Reloc counts: hot=1017584 discardable=4928
ANCIENT=yes /usr/bin/make -C ../lisp compile-first EMACS="../src/bootstrap-emacs"
  ELC      emacs-lisp/macroexp.elc
  ELC      emacs-lisp/cconv.elc
  ELC      emacs-lisp/byte-opt.elc
  ELC      emacs-lisp/bytecomp.elc
  ELC      emacs-lisp/autoload.elc
/usr/bin/make -C ../lisp compile-first EMACS="../src/bootstrap-emacs"
make[2]: Nothing to be done for `compile-first'.
/usr/bin/make -C ../lisp autoloads EMACS="../src/bootstrap-emacs"
  ELC      international/titdic-cnv.elc
/usr/bin/make -C ../leim all EMACS="../src/bootstrap-emacs"
  GEN      ../lisp/leim/quail/CCDOSPY.el
  GEN      ../lisp/leim/quail/Punct.el
  GEN      ../lisp/leim/quail/QJ.el
  GEN      ../lisp/leim/quail/SW.el
  GEN      ../lisp/leim/quail/TONEPY.el
  GEN      ../lisp/leim/quail/4Corner.el
  GEN      ../lisp/leim/quail/ARRAY30.el
  GEN      ../lisp/leim/quail/ECDICT.el
  GEN      ../lisp/leim/quail/ETZY.el
  GEN      ../lisp/leim/quail/Punct-b5.el
  GEN      ../lisp/leim/quail/PY-b5.el
  GEN      ../lisp/leim/quail/QJ-b5.el
  GEN      ../lisp/leim/quail/ZOZY.el
  GEN      ../lisp/leim/quail/tsang-b5.el
  GEN      ../lisp/leim/quail/tsang-cns.el
  GEN      ../lisp/leim/quail/PY.el
  GEN      ../lisp/leim/quail/ZIRANMA.el
  GEN      ../lisp/leim/quail/CTLau.el
  GEN      ../lisp/leim/quail/CTLau-b5.el
  GEN      ../lisp/language/pinyin.el
  GEN      ../lisp/leim/leim-list.el
../build-aux/install-sh -c -d ../lisp/leim/ja-dic
  GEN      ../lisp/leim/ja-dic/ja-dic.el
  INFO     Processing OKURI-ARI entries
  INFO     Processing POSTFIX entries
  INFO     Processing PREFIX entries
  INFO     Collecting OKURI-NASI entries
  INFO     Collecting OKURI-NASI entries... 
  INFO     Collecting OKURI-NASI entries...28% 
  INFO     Collecting OKURI-NASI entries...38% 
  INFO     Collecting OKURI-NASI entries...48% 
  INFO     Collecting OKURI-NASI entries...58% 
  INFO     Collecting OKURI-NASI entries...68% 
  INFO     Collecting OKURI-NASI entries...78% 
  INFO     Collecting OKURI-NASI entries...88% 
  INFO     Collecting OKURI-NASI entries...98% 
  INFO     Collecting OKURI-NASI entries...done
  INFO     Processing OKURI-NASI entries
  INFO     Processing OKURI-NASI entries... 
  INFO     Processing OKURI-NASI entries...10% 
  INFO     Processing OKURI-NASI entries...20% 
  INFO     Processing OKURI-NASI entries...30% 
  INFO     Processing OKURI-NASI entries...40% 
  INFO     Processing OKURI-NASI entries...50% 
  INFO     Processing OKURI-NASI entries...60% 
  INFO     Processing OKURI-NASI entries...70% 
  INFO     Processing OKURI-NASI entries...80% 
  INFO     Processing OKURI-NASI entries...90% 
  INFO     Processing OKURI-NASI entries...100% 
  INFO     Processing OKURI-NASI entries...done
/usr/bin/make -C ../admin/grammars all EMACS="../../src/bootstrap-emacs"
  GEN      ../../lisp/cedet/semantic/bovine/c-by.el
Loading /Users/HOME/Desktop/emacs/lisp/cedet/semantic/grm-wy-boot.el (source)...
  GEN      ../../lisp/cedet/semantic/bovine/make-by.el
Loading /Users/HOME/Desktop/emacs/lisp/cedet/semantic/grm-wy-boot.el (source)...
  GEN      ../../lisp/cedet/semantic/bovine/scm-by.el
Loading /Users/HOME/Desktop/emacs/lisp/cedet/semantic/grm-wy-boot.el (source)...
  GEN      ../../lisp/cedet/semantic/grammar-wy.el
Loading /Users/HOME/Desktop/emacs/lisp/cedet/semantic/grm-wy-boot.el (source)...
  GEN      ../../lisp/cedet/semantic/wisent/javat-wy.el
  GEN      ../../lisp/cedet/semantic/wisent/js-wy.el
  GEN      ../../lisp/cedet/semantic/wisent/python-wy.el
  GEN      ../../lisp/cedet/srecode/srt-wy.el
  GEN      calendar/cal-loaddefs.el
  SCRAPE   ./calendar
  INFO     Scraping files for cal-loaddefs.el... 
  INFO     Scraping files for cal-loaddefs.el...24% 
  INFO     Scraping files for cal-loaddefs.el...42% 
  INFO     Scraping files for cal-loaddefs.el...57% 
  INFO     Scraping files for cal-loaddefs.el...74% 
  INFO     Scraping files for cal-loaddefs.el...92% 
  INFO     Scraping files for cal-loaddefs.el...done
  GEN      calendar/diary-loaddefs.el
  SCRAPE   ./calendar
  INFO     Scraping files for diary-loaddefs.el... 
  INFO     Scraping files for diary-loaddefs.el...24% 
  INFO     Scraping files for diary-loaddefs.el...41% 
  INFO     Scraping files for diary-loaddefs.el...62% 
  INFO     Scraping files for diary-loaddefs.el...82% 
  INFO     Scraping files for diary-loaddefs.el...100% 
  INFO     Scraping files for diary-loaddefs.el...done
  GEN      calendar/hol-loaddefs.el
  SCRAPE   ./calendar
  INFO     Scraping files for hol-loaddefs.el... 
  INFO     Scraping files for hol-loaddefs.el...23% 
  INFO     Scraping files for hol-loaddefs.el...40% 
  INFO     Scraping files for hol-loaddefs.el...60% 
  INFO     Scraping files for hol-loaddefs.el...80% 
  INFO     Scraping files for hol-loaddefs.el...96% 
  INFO     Scraping files for hol-loaddefs.el...done
  GEN      mh-e/mh-loaddefs.el
  SCRAPE   ./mh-e
  INFO     Scraping files for mh-loaddefs.el... 
  INFO     Scraping files for mh-loaddefs.el...24% 
  INFO     Scraping files for mh-loaddefs.el...40% 
  INFO     Scraping files for mh-loaddefs.el...56% 
  INFO     Scraping files for mh-loaddefs.el...72% 
  INFO     Scraping files for mh-loaddefs.el...88% 
  INFO     Scraping files for mh-loaddefs.el...done
  GEN      net/tramp-loaddefs.el
  SCRAPE   ./net
  INFO     Scraping files for tramp-loaddefs.el... 
  INFO     Scraping files for tramp-loaddefs.el...10% 
  INFO     Scraping files for tramp-loaddefs.el...20% 
  INFO     Scraping files for tramp-loaddefs.el...30% 
  INFO     Scraping files for tramp-loaddefs.el...40% 
  INFO     Scraping files for tramp-loaddefs.el...50% 
  INFO     Scraping files for tramp-loaddefs.el...60% 
  INFO     Scraping files for tramp-loaddefs.el...70% 
  INFO     Scraping files for tramp-loaddefs.el...81% 
  INFO     Scraping files for tramp-loaddefs.el...91% 
  INFO     Scraping files for tramp-loaddefs.el...100% 
  INFO     Scraping files for tramp-loaddefs.el...done
  GEN      loaddefs.el
  SCRAPE   . ./calc ./calendar ./cedet ./cedet/ede ./cedet/semantic ...
  SCRAPE   ./cedet/semantic/analyze ./cedet/semantic/bovine ...
  SCRAPE   ./cedet/semantic/decorate ./cedet/semantic/symref ...
  SCRAPE   ./cedet/semantic/wisent ./cedet/srecode ./emacs-lisp ./emulation ...
  SCRAPE   ./erc ./eshell ./gnus ./image ./international ./language ./leim ...
  SCRAPE   ./leim/ja-dic ./leim/quail ./mail ./mh-e ./net ./nxml ./org ...
  SCRAPE   ./play ./progmodes ./textmodes ./url ./vc
  INFO     Scraping files for loaddefs.el... 
  INFO     Scraping files for loaddefs.el...10% 
  INFO     Scraping files for loaddefs.el...20% 
  INFO     Scraping files for loaddefs.el...30% 
  INFO     Scraping files for loaddefs.el...40% 
  INFO     Scraping files for loaddefs.el...50% 
  INFO     Scraping files for loaddefs.el...60% 
  INFO     Scraping files for loaddefs.el...70% 
  INFO     Scraping files for loaddefs.el...80% 
  INFO     Scraping files for loaddefs.el...90% 
  INFO     Scraping files for loaddefs.el...100% 
  INFO     Scraping files for loaddefs.el...done
  GEN      ../etc/DOC
  ELC      ../lisp/abbrev.elc
  ELC      ../lisp/bindings.elc
  ELC      ../lisp/buff-menu.elc
  ELC      ../lisp/button.elc
  ELC      ../lisp/case-table.elc
  ELC      ../lisp/composite.elc
  ELC      ../lisp/cus-face.elc
  ELC      ../lisp/cus-start.elc
  ELC      ../lisp/custom.elc
  ELC      ../lisp/disp-table.elc
  ELC      ../lisp/dnd.elc
  ELC      ../lisp/dos-fns.elc
  ELC      ../lisp/dos-vars.elc
  ELC      ../lisp/dos-w32.elc
  ELC      ../lisp/dynamic-setting.elc
  ELC      ../lisp/electric.elc
  ELC      ../lisp/emacs-lisp/backquote.elc
  ELC      ../lisp/emacs-lisp/byte-run.elc
  ELC      ../lisp/emacs-lisp/cl-generic.elc
  ELC      ../lisp/emacs-lisp/cl-preloaded.elc
  ELC      ../lisp/emacs-lisp/debug-early.elc
  ELC      ../lisp/emacs-lisp/easymenu.elc
  ELC      ../lisp/emacs-lisp/eldoc.elc
  ELC      ../lisp/emacs-lisp/float-sup.elc
  ELC      ../lisp/emacs-lisp/lisp-mode.elc
  ELC      ../lisp/emacs-lisp/lisp.elc
  ELC      ../lisp/emacs-lisp/map-ynp.elc
  ELC      ../lisp/emacs-lisp/nadvice.elc
  ELC      ../lisp/emacs-lisp/oclosure.elc
  ELC      ../lisp/emacs-lisp/regexp-opt.elc
  ELC      ../lisp/emacs-lisp/shorthands.elc
  ELC      ../lisp/emacs-lisp/syntax.elc
  ELC      ../lisp/emacs-lisp/tabulated-list.elc
  ELC      ../lisp/emacs-lisp/timer.elc
  ELC      ../lisp/env.elc
  ELC      ../lisp/epa-hook.elc
  ELC      ../lisp/faces.elc
  ELC      ../lisp/files.elc
  ELC      ../lisp/font-core.elc
  ELC      ../lisp/font-lock.elc
  ELC      ../lisp/format.elc
  ELC      ../lisp/frame.elc
  ELC      ../lisp/fringe.elc
  ELC      ../lisp/help.elc
  ELC      ../lisp/image.elc
  ELC      ../lisp/indent.elc
  ELC      ../lisp/international/charscript.elc
  ELC      ../lisp/international/emoji-zwj.elc
  ELC      ../lisp/international/characters.elc
/usr/bin/make -C ../admin/unidata all EMACS="../../src/bootstrap-emacs"
  ELC      uvs.elc
  ELC      unidata-gen.elc
  GEN      unidata.txt
  GEN      ../../lisp/international/uni-bidi.el
  GEN      ../../lisp/international/uni-brackets.el
  GEN      ../../lisp/international/uni-category.el
  GEN      ../../lisp/international/uni-combining.el
  GEN      ../../lisp/international/uni-comment.el
  GEN      ../../lisp/international/uni-decimal.el
  GEN      ../../lisp/international/uni-decomposition.el
  GEN      ../../lisp/international/uni-digit.el
  GEN      ../../lisp/international/uni-lowercase.el
  GEN      ../../lisp/international/uni-mirrored.el
  GEN      ../../lisp/international/uni-name.el
  GEN      ../../lisp/international/uni-numeric.el
  GEN      ../../lisp/international/uni-old-name.el
  GEN      ../../lisp/international/uni-special-lowercase.el
  GEN      ../../lisp/international/uni-special-titlecase.el
  GEN      ../../lisp/international/uni-special-uppercase.el
  GEN      ../../lisp/international/uni-titlecase.el
  GEN      ../../lisp/international/uni-uppercase.el
  GEN      ../../lisp/international/charprop.el
  GEN      ../../lisp/international/emoji-labels.el
  GEN      ../../lisp/international/uni-scripts.el
  GEN      ../../lisp/international/uni-confusable.el
  GEN      ../../lisp/international/idna-mapping.el
/usr/bin/make -C ../admin/charsets cp51932.el
make[2]: Nothing to be done for `cp51932.el'.
  ELC      ../lisp/international/cp51932.elc
/usr/bin/make -C ../admin/charsets eucjp-ms.el
make[2]: Nothing to be done for `eucjp-ms.el'.
  ELC      ../lisp/international/eucjp-ms.elc
  ELC      ../lisp/international/fontset.elc
  ELC      ../lisp/international/iso-transl.elc
  ELC      ../lisp/international/mule-cmds.elc
  ELC      ../lisp/international/mule-conf.elc
  ELC      ../lisp/international/mule-util.elc
  ELC      ../lisp/international/mule.elc
  ELC      ../lisp/international/ucs-normalize.elc
  ELC      ../lisp/isearch.elc
  ELC      ../lisp/jit-lock.elc
  ELC      ../lisp/jka-cmpr-hook.elc
  ELC      ../lisp/keymap.elc
  ELC      ../lisp/language/burmese.elc
  ELC      ../lisp/language/cham.elc
  ELC      ../lisp/language/chinese.elc
  ELC      ../lisp/language/cyrillic.elc
  ELC      ../lisp/language/czech.elc
  ELC      ../lisp/language/english.elc
  ELC      ../lisp/language/ethiopic.elc
  ELC      ../lisp/language/european.elc
  ELC      ../lisp/language/georgian.elc
  ELC      ../lisp/language/greek.elc
  ELC      ../lisp/language/hebrew.elc
  ELC      ../lisp/language/indian.elc
  ELC      ../lisp/language/japanese.elc
  ELC      ../lisp/language/khmer.elc
  ELC      ../lisp/language/korean.elc
  ELC      ../lisp/language/lao.elc
  ELC      ../lisp/language/misc-lang.elc
  ELC      ../lisp/language/romanian.elc
  ELC      ../lisp/language/sinhala.elc
  ELC      ../lisp/language/slovak.elc
  ELC      ../lisp/language/tai-viet.elc
  ELC      ../lisp/language/thai.elc
  ELC      ../lisp/language/tibetan.elc
  ELC      ../lisp/language/utf-8-lang.elc
  ELC      ../lisp/language/vietnamese.elc
  ELC      ../lisp/ls-lisp.elc
  ELC      ../lisp/menu-bar.elc
  ELC      ../lisp/minibuffer.elc
  ELC      ../lisp/mouse.elc
  ELC      ../lisp/mwheel.elc
  ELC      ../lisp/newcomment.elc
  ELC      ../lisp/obarray.elc
  ELC      ../lisp/paren.elc
  ELC      ../lisp/progmodes/elisp-mode.elc
  ELC      ../lisp/progmodes/prog-mode.elc
  ELC      ../lisp/register.elc
  ELC      ../lisp/replace.elc
  ELC      ../lisp/rfn-eshadow.elc
  ELC      ../lisp/scroll-bar.elc
  ELC      ../lisp/select.elc
  ELC      ../lisp/simple.elc
  ELC      ../lisp/startup.elc
  ELC      ../lisp/subr.elc
  ELC      ../lisp/tab-bar.elc
  ELC      ../lisp/term/common-win.elc
  ELC      ../lisp/term/haiku-win.elc
  ELC      ../lisp/term/internal.elc
  ELC      ../lisp/term/ns-win.elc
  ELC      ../lisp/term/pc-win.elc
  ELC      ../lisp/term/pgtk-win.elc
  ELC      ../lisp/term/tty-colors.elc
  ELC      ../lisp/term/w32-win.elc
  ELC      ../lisp/term/x-win.elc
  ELC      ../lisp/textmodes/fill.elc
  ELC      ../lisp/textmodes/page.elc
  ELC      ../lisp/textmodes/paragraphs.elc
  ELC      ../lisp/textmodes/text-mode.elc
  ELC      ../lisp/tool-bar.elc
  ELC      ../lisp/tooltip.elc
  ELC      ../lisp/uniquify.elc
  ELC      ../lisp/vc/ediff-hook.elc
  ELC      ../lisp/vc/vc-hooks.elc
  ELC      ../lisp/version.elc
  ELC      ../lisp/w32-fns.elc
  ELC      ../lisp/w32-vars.elc
  ELC      ../lisp/widget.elc
  ELC      ../lisp/window.elc
  ELC      ../lisp/x-dnd.elc
rm -f emacs && cp -f temacs emacs
LC_ALL=C ./temacs -batch  -l loadup --temacs=pdump \
		--bin-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/ --eln-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Frameworks/
2022-04-24 18:06:53.950 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100916490 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091a1a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009165a0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009096e0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009097d0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100909850 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.980 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100909880 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.981 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009098c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.981 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009099d0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.982 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100909b10 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.982 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100909a00 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.982 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100909a80 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.057 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100909ac0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.057 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091b030 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.058 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009099a0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.058 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091afb0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.058 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091b140 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.058 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091b0c0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.140 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091b0f0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.141 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091b1d0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.141 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091b6b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.141 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091b7a0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.141 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091b710 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.142 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091d920 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.142 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091d950 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.215 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091d990 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.219 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103002770 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.219 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091e830 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:54.220 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091b8a0 of class NSCFData autoreleased with no pool in place - just leaking
Loading loadup.el (source)...
Dump mode: pdump
Using load-path (/Users/HOME/Desktop/emacs/lisp)
Loading emacs-lisp/debug-early...
Loading emacs-lisp/byte-run...
Loading emacs-lisp/backquote...
Loading subr...
Loading keymap...
Loading version...
Loading widget...
Loading custom...
Loading emacs-lisp/map-ynp...
Loading international/mule...
Loading international/mule-conf...
Loading env...
Loading format...
Loading bindings...
Loading window...
Loading files...
Loading emacs-lisp/macroexp...
Loading cus-face...
Loading faces...
Loading loaddefs.el (source)...
Loading button...
Loading emacs-lisp/cl-preloaded...
Loading emacs-lisp/oclosure...
Loading obarray...
Loading abbrev...
Loading help...
Loading jka-cmpr-hook...
Loading epa-hook...
Loading international/mule-cmds...
Loading case-table...
Loading international/charprop.el (source)...
Loading international/characters...
Loading international/charscript...
Loading international/emoji-zwj...
Loading composite...
Loading language/chinese...
Loading language/cyrillic...
Loading language/indian...
Loading language/sinhala...
Loading language/english...
Loading language/ethiopic...
Loading language/european...
Loading language/czech...
Loading language/slovak...
Loading language/romanian...
Loading language/greek...
Loading language/hebrew...
Loading international/cp51932...
Loading international/eucjp-ms...
Loading language/japanese...
Loading language/korean...
Loading language/lao...
Loading language/tai-viet...
Loading language/thai...
Loading language/tibetan...
Loading language/vietnamese...
Loading language/misc-lang...
Loading language/utf-8-lang...
Loading language/georgian...
Loading language/khmer...
Loading language/burmese...
Loading language/cham...
Loading indent...
Loading emacs-lisp/cl-generic...
Loading simple...
Loading emacs-lisp/nadvice...
Loading minibuffer...
Loading frame...
Loading startup...
Loading term/tty-colors...
Loading font-core...
Loading emacs-lisp/syntax...
Loading font-lock...
Loading jit-lock...
Loading mouse...
Loading scroll-bar...
Loading select...
Loading emacs-lisp/timer...
Loading emacs-lisp/easymenu...
Loading isearch...
Loading rfn-eshadow...
Loading menu-bar...
Loading tab-bar...
Loading emacs-lisp/lisp...
Loading textmodes/page...
Loading register...
Loading textmodes/paragraphs...
Loading progmodes/prog-mode...
Loading emacs-lisp/lisp-mode...
Loading textmodes/text-mode...
Loading textmodes/fill...
Loading newcomment...
Loading replace...
Loading emacs-lisp/tabulated-list...
Loading buff-menu...
Loading fringe...
Loading emacs-lisp/regexp-opt...
Loading image...
Loading international/fontset...
Loading dnd...
Loading tool-bar...
Loading term/common-win...
2022-04-24 18:06:57.116 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491a1d0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.117 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1cf0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.117 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490b9d0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.117 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104901840 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.117 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491a230 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff9390 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.130 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff2a10 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.131 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fed2b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.131 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100987e50 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.131 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100988060 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.132 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100987f40 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.132 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100988990 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.132 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009881e0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.210 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104901870 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.211 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491a200 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.212 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049018b0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.212 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff704f9228 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.212 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff704f9228 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.212 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104920e90 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.290 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100988a20 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.291 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989ea0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.291 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100988b50 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.292 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100986d50 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.292 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100986d50 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.292 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989590 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a00080 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.364 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098c180 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.365 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104914860 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.365 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100986d50 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.365 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104914900 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.365 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104914930 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.366 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104913270 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.445 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989350 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.446 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104b00000 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.446 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049132b0 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.446 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049131f0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.446 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104914f60 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.447 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104912b20 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.526 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104912b20 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.527 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491f7c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.527 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a00170 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.527 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a001e0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.528 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a00380 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.528 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a003c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.613 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091d320 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.614 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104912b20 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.614 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a004a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.614 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a004c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.614 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a004c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.615 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a004e0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.615 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a00670 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.694 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a006e0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.694 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a005e0 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.695 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a008d0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.695 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a009e0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.695 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a004c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.695 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a00650 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.780 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491b570 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.781 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491b570 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.781 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c00000 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c00b00 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01320 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c012f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.862 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01440 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.863 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01490 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.863 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c013a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.863 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c013f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.863 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c017e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.864 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01830 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.947 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01ac0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.948 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00020 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.948 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01ba0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.949 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01b30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.949 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01ce0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.949 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01d10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.028 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01770 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01f10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.030 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01fe0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.030 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00000 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.030 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00070 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.030 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e000c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.114 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02010 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.114 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01540 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.114 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02040 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.115 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02150 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.115 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02180 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.115 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c021d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.195 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c023a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.196 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01bd0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.196 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e001d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.197 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00200 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.197 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e003d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.197 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00420 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.280 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01c20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.281 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01c70 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.281 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01d40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.281 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01d70 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.281 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01dc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.282 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01e10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.362 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02830 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02880 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c028d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02920 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.364 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02970 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.364 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c029c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.447 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02a10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.447 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02a60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02ab0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02b00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00070 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d000c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.528 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02ba0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.529 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02bf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.529 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02c40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.529 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02c90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.529 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02ce0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.530 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02d30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1030029d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103008fc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103003100 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103001ef0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103002c40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02410 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02460 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c024b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.704 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d002d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.704 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00130 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.704 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00180 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.704 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02500 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.705 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02550 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.784 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1030045c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059000d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900040 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a00970 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a00a50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a00a80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104913220 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989d80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b2e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098be80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.871 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098bfa0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.871 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b940 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491f810 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490a240 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490a270 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490a0d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490a100 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:58.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491f890 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491f8c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b280 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098ad40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.037 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091f370 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.037 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a00fd0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.037 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a00f80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01000 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01110 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01400 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01430 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01900 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01dd0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01e20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01e70 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01ec0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01f10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01f60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.204 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01fb0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.284 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091a0e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02090 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a010c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091f420 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100916750 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100907af0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.368 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900180 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900100 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900130 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.370 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059001b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.370 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059002a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.370 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900770 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.451 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491f8f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491f950 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491c1a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491c1d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491c200 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491c230 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059007c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01090 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a02000 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a02050 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a02160 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a02190 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100907b20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009402a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059008c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490a090 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490a010 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490a040 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900220 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a022e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a020e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059008f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059007f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.704 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900840 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.784 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900890 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900a00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900a50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900aa0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900af0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900b40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.866 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989c30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989c60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989ae0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989b10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.868 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098abf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.868 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009892c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490a130 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490a160 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490a190 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491c260 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491c290 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:06:59.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491c2c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.033 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009892f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098a8f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098a920 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989620 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989650 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989110 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a021c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900b90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900be0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900c30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900c80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a022b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989140 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b040 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b070 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098baf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098bb20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098c030 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.284 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098c060 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b340 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b370 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989080 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009890b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098aef0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.368 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900cd0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900d20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900d70 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.370 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901320 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.370 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901370 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.370 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059013c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.451 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100912e60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009197a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100915dc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091f2d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009097a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009159f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a00050 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a02230 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a02310 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a02420 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a02450 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a024a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091a240 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098af20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049017f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901410 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901460 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059014b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491f700 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049155d0 of class __NSFastEnumerationEnumerator autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490cef0 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104921af0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104921d00 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104921b50 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a02fb0 of class __NSArrayReverseEnumerator autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a03000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a03050 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.787 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a030a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.787 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059014e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.787 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900940 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.788 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900990 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10490d080 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104921c70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104921e00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104921e50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10493b310 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.871 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104921cc0 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901530 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901680 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059015c0 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff13b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff6430 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:00.954 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059030f0 of class NSDeviceRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff8150 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fecf10 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff25f0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.038 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10493fe40 of class NSCustomReleaseData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.038 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10493e2a0 of class NSBitmapImageRep autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.039 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105903c20 of class NSImage autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.039 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105902980 of class __NSArray0 autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.117 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104940750 of class NSGradientPatternColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.117 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffbc30 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fef7b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104943fc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104944120 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.120 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104944160 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100903950 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a02590 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffbc30 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a03850 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.204 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff3130 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.204 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fefcd0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059030a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105904060 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105904090 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.287 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffab10 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.287 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059042b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.287 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059042e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.368 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fede90 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.368 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091a550 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009061a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1eb0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff7010 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.370 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fed730 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fedb30 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fee3d0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff4710 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1d90 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffbb50 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.454 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091a150 of class NSColorSpaceColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.532 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fee990 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.533 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff8b30 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.533 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fee810 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fed4f0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fefdb0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff02f0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059044b0 of class NSMenuItemHighlightColor autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff48b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fece70 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffae30 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff9e70 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff42b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fedeb0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.700 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901f90 of class __NSArrayReverseEnumerator autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.700 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a03880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a038e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901600 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a03a80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a03ad0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105904410 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901910 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901970 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059019d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105904f40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105904fa0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.787 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105905000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.866 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a03be0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105904460 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10493b800 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.868 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00110 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.868 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c004a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d001b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00300 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00350 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00200 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00260 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00430 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:01.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00490 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.033 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c00520 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00250 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e002b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00300 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00360 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e004e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00640 of class NSConcreteData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.121 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d002b0 of class __NSArrayReverseEnumerator autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.122 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d003a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.122 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00680 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.122 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00790 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.122 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d007e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.123 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00830 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.199 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01f40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c020e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c00df0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c002c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01e40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.280 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100982050 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.281 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989fc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.281 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100989cc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.281 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d008d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.282 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.282 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00970 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.282 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d009c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.362 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00a10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00a60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00ab0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00b00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f580 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.364 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f5d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.447 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01e90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c005d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c00620 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c00670 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c006c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02220 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.449 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02270 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.529 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c022c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.529 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103002eb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.530 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103001dc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.530 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103001cd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.530 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103002130 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.530 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103009160 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02310 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01590 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c015e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01630 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01680 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c016d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.699 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.700 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00450 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.700 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00540 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.700 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00590 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.700 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e005e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.700 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c018d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e006f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00740 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00790 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e007e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00830 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.787 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.868 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01970 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.868 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c019c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e008d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01a10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00660 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103001e50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103001ea0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1030091b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d006d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d00720 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f620 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f730 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:02.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f780 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.032 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103009200 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.033 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.033 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00e20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00e70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00ec0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c01a60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c00b80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.117 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00f10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00f60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f6a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104940970 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10493b850 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10493b700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105903e00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059029e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105902110 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901a30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10493b750 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105902160 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059021b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.284 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901a80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104b00040 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104940a00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104940850 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049408a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104940a50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.368 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a03c40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104940aa0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104943870 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901b90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.370 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901be0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.370 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f7d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.370 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f820 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.451 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1030096f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.451 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e00fb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103009740 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103009850 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1030098a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1030098f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103009940 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c00bd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02580 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02690 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c026f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02740 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02790 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.617 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03540 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a03c90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a03ce0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a03d30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01160 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a011b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.694 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049407c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.695 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049438c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.695 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049439d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.695 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104943a20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.696 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104943a70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.696 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104943ac0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.696 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104943b10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901c30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105c00000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105a00020 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103009790 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1030097e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.787 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103009990 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.868 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e009a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01060 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01190 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e011e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.871 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01230 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103009e90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f870 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f8c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f9d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03590 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:03.954 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c035e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103009ee0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901b00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901c80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901cd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900e50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900eb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900f10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104943940 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104943c70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0fa20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0fa70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0fac0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.120 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0fb10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0fb60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c025d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c02620 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03630 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1030099e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03680 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c036d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.284 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c037e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e010b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01280 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01390 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f910 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e013e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.361 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03830 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.362 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0f960 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c038d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0fbb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.364 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0fcc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0fd10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x103009a30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a320 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03720 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03770 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.454 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03970 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03a80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01430 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01480 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e014d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03ad0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03b20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03b70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03bc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a430 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0fc00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d0fc50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10150 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10260 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c039f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03c10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03d20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03d70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03dc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03e10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03e70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.777 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03ec0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.777 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03f10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.778 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03f60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.778 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03fb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.778 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.778 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04050 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.862 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c040a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.862 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a370 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.863 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a3c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.863 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a480 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.863 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a590 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.863 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a5e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.947 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c040f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.948 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a630 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.948 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.948 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04190 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.949 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c041e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.949 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04230 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:04.949 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04280 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c042d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04710 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.030 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01300 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.030 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01520 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.030 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01630 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.030 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01680 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04760 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c047b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d101a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d101f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d102b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d103c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10410 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.199 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e016d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.199 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01720 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01770 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e017c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01810 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01860 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04800 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10300 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10350 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10460 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10570 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.287 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a4d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.287 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a520 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.365 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a680 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.366 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a790 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.366 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a7e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.367 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a830 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.367 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.367 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a8d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.451 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04c40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04c90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04ce0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04d30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04d80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04dd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04e20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04e70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04ec0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04f10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04f60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c04fb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05050 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c050a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c050f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05190 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c051e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d104b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10500 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d105c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.704 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a970 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.704 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a9c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.704 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300aa10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.784 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e018b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01900 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01950 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e019a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e019f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01e30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01e80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.868 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01ed0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03c60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c03cb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05230 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05340 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05390 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c053e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05430 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05480 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c054d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05520 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05570 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:05.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c055c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05610 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05660 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10610 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10660 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10770 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d107c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c056b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05750 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c057a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c057f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05840 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.120 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05890 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c058e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300aa60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300aab0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300aef0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300af40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300af90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05930 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d106b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10810 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10970 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d109c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.368 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10a10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10a60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300a700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300afe0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b0f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.370 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.451 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b190 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b1e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b230 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b280 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b2d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b320 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b370 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01f20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b3c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b410 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b460 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b4b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b500 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b550 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b5a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b9e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300ba30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300ba80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bad0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bb20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10ab0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10b00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c052b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05980 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05a90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05ae0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.784 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05b30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05b80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05bd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05c20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05c70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05cc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05d10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.868 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05d60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05db0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e015a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01f70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02080 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e020d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05e00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05e50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05ea0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05ef0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05f40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:06.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05f90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.033 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05fe0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06420 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06470 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c064c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.034 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06510 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06560 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c065b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06600 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b030 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300b080 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bb70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bc80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.120 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bcd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06650 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c066a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10860 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d108b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10b50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10c60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10cb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.284 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c066f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06740 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06790 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c067e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06830 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.365 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c068d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.366 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e01fc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.366 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10ba0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.367 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10bf0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.367 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10d00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.367 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10e10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.367 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11250 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.451 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06970 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c069c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06a10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06a60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06ab0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.532 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06b00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.533 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06b50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.533 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bbc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bc10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bd20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300be30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.534 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300be80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.617 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06ba0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06bf0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06c40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06c90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06ce0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06d30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.699 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06d80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.700 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06dd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.700 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d10d80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d112a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d113b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11400 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11450 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06e20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06e70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06ec0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c06f10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07350 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.787 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c073a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.866 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c073f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.866 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07440 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07490 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c074e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07530 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07580 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c075d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.947 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07620 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.948 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07670 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.948 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c076c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.948 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07710 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.948 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11320 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:07.949 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d114a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.028 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07760 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.028 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c077b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07800 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07850 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c078a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c078f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.030 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07940 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.113 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07990 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.113 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c079e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.113 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07a30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.114 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07a80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.114 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07ad0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.114 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07b20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.194 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07b70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.195 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02010 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.195 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02120 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.196 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02620 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.196 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02670 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.196 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e026c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.196 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02710 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.280 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02760 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.281 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e027b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.281 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02800 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.281 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02850 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.282 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e028a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.282 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bed0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.361 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e028f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.362 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02940 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.362 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bd70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.362 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bdc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.362 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bf20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.362 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c030 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.363 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c080 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.447 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07bc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.447 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300bfa0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02990 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e029e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02a30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.449 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02a80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.527 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02ad0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.528 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d115b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.528 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11600 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.529 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11650 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.529 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d116a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.529 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d116f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.529 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11740 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.613 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c07c10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.614 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08050 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.614 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c080a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.614 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c080f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.615 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11790 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.615 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d117e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.695 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11830 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.695 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.696 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d118d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.696 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11920 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.696 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11970 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.696 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d119c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.697 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11a10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.780 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c05a00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.781 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08140 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.781 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08250 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.781 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c082a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.781 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c082f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.782 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08340 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.861 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08390 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.862 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c083e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.862 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08430 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.863 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08480 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.863 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c084d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.863 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08520 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.864 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08570 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.946 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c0d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.947 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c1e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.947 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c230 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.947 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c280 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.948 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c2d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:08.948 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c320 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.028 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e021a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c085c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08610 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08660 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c086b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.030 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.030 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08750 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.117 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c370 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c087a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c087f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c120 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c170 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c3c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.199 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c4d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c081c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c440 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c520 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.200 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c630 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c680 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.284 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c6d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.284 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01200 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01250 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a012a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104943b60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104943bb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104943c00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.368 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098a980 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.368 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098a380 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100988c60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098a680 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b4c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10090b290 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.451 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a012f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.451 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01340 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01390 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01480 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a014d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01520 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01570 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b880 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098ac80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098a5c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.537 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b1c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.537 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009880f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009891a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08840 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08890 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104944750 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049447a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049447f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.620 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104944840 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900dc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900f60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901070 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059010c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901110 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.704 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105901160 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098c0c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098bdc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098af80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c570 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.786 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c5c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.787 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c720 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.787 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300cc20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300cc70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300ccc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c088e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08930 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08a40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.870 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08a90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02f10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d114f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11540 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11a60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11b70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11bc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:09.954 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11c10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.035 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11c60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11cb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.036 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11d00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.037 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11d50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.037 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11da0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.037 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11df0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.117 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300cd10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02f60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300c7a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049446c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104944890 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300cd60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.120 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300ce70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.201 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300cec0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300cf10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300d350 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.202 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300d3a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300d3f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.203 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300d440 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.284 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c089b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08ae0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08bf0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08c40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08c90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08ce0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08d30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.366 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08d80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.366 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08dd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.367 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08e20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.367 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08e70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.367 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08ec0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.368 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300cde0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.447 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08f10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b5e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105d00000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.448 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300d490 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.449 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08b30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.449 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08b80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.449 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08f60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.531 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e02fb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.531 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e03000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.532 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300d4e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.532 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c08fb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.532 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09000 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.533 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09110 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.617 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09160 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.617 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c095a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c095f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09640 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09690 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c096e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09730 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11e40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.701 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11e90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11ee0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11f30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.702 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11f80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.703 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d11fd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.783 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e03050 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.784 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e030a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.784 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e031b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.784 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e03200 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e03250 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e032a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e032f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.867 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d12020 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.868 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d12070 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d120c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d12110 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d12160 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.869 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d121b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d12200 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.951 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d12250 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d122a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09080 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09780 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09890 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:10.953 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09cd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.028 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09d20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.028 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09d70 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09dc0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09e10 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09e60 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.029 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09eb0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.117 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09f00 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09f50 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09fa0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c09ff0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.118 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a040 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a090 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.119 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a0e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.196 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a130 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.197 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a180 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.197 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a015c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.197 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01610 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.198 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01660 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.198 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a016b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.284 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01700 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.284 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a01750 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049448e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104944930 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.285 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104944a40 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104944a90 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.286 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104944ae0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.367 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104a017a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.368 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104945120 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.368 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104945170 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1049451c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104945600 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.369 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104945650 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.451 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098a2c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098bee0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100988270 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1009882c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.452 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098bcd0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.453 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098bd20 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900fe0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059011b0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.535 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900380 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059003d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900420 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.536 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900470 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.537 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x1059004c0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.617 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100926c30 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.617 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100926c80 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b3d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b420 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.618 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b9a0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.619 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10098b9f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.694 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x105900510 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.695 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e03340 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.696 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e03390 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.696 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e033e0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.696 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e03430 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.697 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e03480 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.697 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e034d0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.784 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d122f0 of class NSCFData autoreleased with no pool in place - just leaking
2022-04-24 18:07:11.785 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104d12340 of class NSCFData autoreleased with no pool in place - just leaking
Loading international/mule-util...
Loading international/ucs-normalize...
Loading term/ns-win...
Loading mwheel...
Loading progmodes/elisp-mode...
Loading emacs-lisp/float-sup...
Loading vc/vc-hooks...
Loading vc/ediff-hook...
Loading uniquify...
Loading electric...
Loading paren...
Loading emacs-lisp/shorthands...
Loading emacs-lisp/eldoc...
Loading cus-start...
Loading tooltip...
Loading international/iso-transl...
Loading leim/leim-list.el (source)...
Waiting for git...
Waiting for git...
Finding pointers to doc strings...
Finding pointers to doc strings...done
Pure-hashed: 16884 strings, 5376 vectors, 46724 conses, 4853 bytecodes, 280 others
Dumping under the name emacs.pdmp
Dumping fingerprint: c96783675af3ffab2d33508260eed7bdffb273d7c38f03952eece27a78b6b9bd
Dump complete
Byte counts: header=100 hot=11122668 discardable=139408 cold=4954800
Reloc counts: hot=635931 discardable=4978

* * *

Adding name emacs-29.0.50.1
Adding name emacs-29.0.50.1.pdmp
2022-04-24 18:07:14.405 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e031a0 of class __NSCFDate autoreleased with no pool in place - just leaking
2022-04-24 18:07:14.405 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300d530 of class NSCFTimer autoreleased with no pool in place - just leaking
cp -f emacs.pdmp bootstrap-emacs.pdmp 
/usr/bin/make -C ../nextstep all

* * *

Thanks,

Keith

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-23-2022 15:13:11] <23 Apr 2022 23:13:11 +0100>
> From: Alan Third <alan@idiocy.org>
> To: Keith David Bershatsky <esq@lawlist.com>
> Cc: Po Lu <luangruo@yahoo.com>, Mattias Engdegård <mattiase@acm.org>, emacs-devel@gnu.org
> Subject: Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
> 
> On Fri, Apr 22, 2022 at 02:29:34PM -0700, Keith David Bershatsky wrote:
> > I observed a lot of leaking messages when building Emacs master branch on OSX 10.6.8, and the initial output of gdb is as follows.  Is this anything that needs to be addressed?
> >
> > Starting program: /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs
> > 2022-04-22 14:24:31.450 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x100918460 of class NSPathStore2 autoreleased with no pool in place - just leaking
> > 2022-04-22 14:24:31.453 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091c290 of class NSPathStore2 autoreleased with no pool in place - just leaking
> > 2022-04-22 14:24:31.454 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x1009185f0 of class NSCFString autoreleased with no pool in place - just leaking
> > 2022-04-22 14:24:31.454 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cc40 of class NSCFArray autoreleased with no pool in place - just leaking
> > 2022-04-22 14:24:31.454 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cd30 of class NSPathStore2 autoreleased with no pool in place - just leaking
> > 2022-04-22 14:24:31.455 Emacs[15180:60f] *** __NSAutoreleaseNoPool(): Object 0x10091ce90 of class NSCFData autoreleased with no pool in place - just leaking
> 
> To be honest, I'm unsure as I don't know where in the code those leaks
> are occurring. I guess it's maybe possible to put a breakpoint on
> __NSAutoreleaseNoPool and then get a backtrace when it's caught, but I
> don't see these messages here so I suspect you'd have to do that work.
> 
> Do the messages continue as you use Emacs or are they just at startup?
> --
> Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-25  1:49 Keith David Bershatsky
@ 2022-04-25  3:09 ` Po Lu
  0 siblings, 0 replies; 65+ messages in thread
From: Po Lu @ 2022-04-25  3:09 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Alan Third, emacs-devel, Mattias Engdegård, Paul Eggert

Keith David Bershatsky <esq@lawlist.com> writes:

> The "just leaking" messages appear (1) when building Emacs and (2) when Emacs starts up running under gdb.  Once Emacs has started when running under gdb, I have not observed additional "just leaking" messages.  I have only used Emacs master branch very lightly on OSX 10.6.8; e.g., opening source code files, movement / navigation, M-x butterfly.  Debugging a memory leak is beyond my current level of Emacs-Fu.  Here is an excerpt from the build:
>
> rm -f emacs && cp -f temacs emacs
> LC_ALL=C ./temacs -batch  -l loadup --temacs=pdump \
> 		--bin-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/ --eln-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Frameworks/
> 2022-04-24 17:05:19.291 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100916490 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.293 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091a1a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.293 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009165a0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.294 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009096e0 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.294 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009097d0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.294 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909850 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.321 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909880 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.321 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009098c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.321 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009099d0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.321 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909b10 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.322 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909a00 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.322 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909a80 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.401 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909ac0 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.402 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b030 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.402 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009099a0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.402 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091afb0 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.402 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b140 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.403 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b0c0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.486 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b0f0 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.487 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b1d0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.487 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b6b0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.487 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b7a0 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.487 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b710 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.488 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091d920 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.488 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091d950 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.569 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091d990 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.572 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103002770 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.573 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030045c0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.573 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103009160 of class NSCFData autoreleased with no pool in place - just leaking
> Loading loadup.el (source)...
> Dump mode: pdump
>
> * * *
>
> Loading term/common-win...
> 2022-04-24 17:05:22.531 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d040 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.532 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1cf0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.532 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10480a2d0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.532 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d0f0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.533 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d120 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.533 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff9390 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.535 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff2a10 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.535 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fed2b0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.535 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900000 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.536 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900050 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.536 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900150 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.536 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049001a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.536 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900220 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.604 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048104d0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.605 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d070 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.605 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104810580 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.605 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff704f9228 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.606 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff704f9228 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.606 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104814c40 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.703 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00230 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.704 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00670 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.704 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00750 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.705 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00790 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.705 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00790 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.705 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103457c00 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.705 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346cf30 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.803 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091b8a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.803 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00090 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.804 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00790 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.804 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900290 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.804 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049002c0 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.805 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049003b0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.886 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00360 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.886 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900450 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.886 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049003f0 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.887 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900490 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.887 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900300 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.887 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049004c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.968 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049004c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.968 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049006b0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.968 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900810 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.968 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900880 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.969 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900580 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.969 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900a20 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.969 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00250 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.069 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049004c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.069 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a003a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.069 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00570 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.070 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00570 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.070 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048290b0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.070 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a006c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.170 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00730 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.170 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00610 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.170 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00650 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.171 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a008f0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.171 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00570 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.171 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a009c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.259 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900a80 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.259 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900a80 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.259 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e670 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458560 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034171e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034171b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346edb0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.341 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b006d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.342 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091d320 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.342 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00720 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.343 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b008d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.343 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b009e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.343 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00b90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.426 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909cf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.427 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100916750 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.427 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103468cd0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.427 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475f70 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.428 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346ed60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.428 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345a8e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.508 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091a0e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.509 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091c6d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.509 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091c8b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.509 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e620 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.510 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100903970 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.510 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345a940 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.592 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909de0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.592 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909e30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.592 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00bc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.593 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00960 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.593 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00bf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.593 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00d00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.675 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091dbe0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.676 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909220 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.676 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00e30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.676 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00c60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.677 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345a910 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.677 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00c90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.759 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909250 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00f20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00f50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01040 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01090 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00310 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.843 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00ab0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.843 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00b00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00b50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00ba0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103466130 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.845 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b010e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.922 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a060 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a0b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300d850 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.924 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300e700 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.924 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103016ef0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:23.924 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013430 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.006 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103015fa0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090ada0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103012bf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300c3d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030266e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030211e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.095 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00bf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.095 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900700 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103014d80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301cc20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103025710 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.097 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301f0c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.180 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00810 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.181 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00860 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.182 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00f80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.182 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00fb0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.182 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01110 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.182 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01140 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034660d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103466100 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345e080 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345e0b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345e0e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464260 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090adf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e5c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e5f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090ad00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090ad50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.348 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090acd0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.429 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e4c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.429 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090ab90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464290 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103471700 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00c40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01330 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.514 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b011b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.515 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345ac40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.515 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b011e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.515 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01380 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.515 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01230 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.516 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300acb0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.516 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103012570 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.594 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345ac70 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.595 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345aca0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.595 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00420 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c008d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00920 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00970 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.678 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104829110 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.678 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104814c90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.679 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103471730 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.679 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103471760 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.679 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034604a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.679 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034604d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e540 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00a30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00b40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.762 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b013d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.762 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01400 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.762 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103450fe0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.839 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e4f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.839 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091c7d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.840 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091c820 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.840 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090abc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.840 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090abf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.840 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090ac40 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.922 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103451040 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034710a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034710d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103471100 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.924 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345ae20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:24.924 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345ae50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a100 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a130 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a180 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a1d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090a220 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909310 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.092 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300cd90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.092 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030224b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.093 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b012e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.093 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01450 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.093 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01280 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.093 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01910 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.177 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909360 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.178 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009093b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300f3d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01960 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103017740 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.180 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030127b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.263 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009094b0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909670 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909620 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091e420 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009094e0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009095d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909400 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100909450 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091f440 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091f490 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091f530 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00af0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091f580 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.430 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091ca00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.431 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103452ce0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.431 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00c90 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.431 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00ce0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.432 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c009a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.513 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c003a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.513 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c009d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.514 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104814cc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.514 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049007d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.514 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900aa0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.515 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00ae0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900af0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104814cf0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900b20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.597 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049010d0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.597 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00b10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.597 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901100 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.680 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00d30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.681 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00d80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.681 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00ac0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.681 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00d30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.682 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00d80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.682 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01990 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.759 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cb50 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.760 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030113f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b019c0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01a10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103452cb0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.761 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345ae80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.843 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301e370 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.843 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b00e60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01af0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01c00 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01c30 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.844 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01c80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.921 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10343ba20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.922 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103452d10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.922 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103459d10 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103002740 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103000490 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103018410 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:25.923 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103022ef0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.007 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100912e60 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100915dc0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.008 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100916050 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.009 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009197a0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.009 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100916520 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.009 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100913300 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345c930 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.097 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104d00000 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.097 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00dd0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.098 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104e00000 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.098 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00e20 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.099 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00e20 of class __NSFastEnumerationEnumerator autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.178 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00f80 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00a00 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104814d20 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.179 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815fc0 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.180 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104807180 of class __NSArrayReverseEnumerator autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.180 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048169e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.263 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00a60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c01200 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.264 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c01430 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c02c70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900ba0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.265 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c02e50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a00fc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.346 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034760b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346ce80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a01010 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.347 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a01060 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.348 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c02ea0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.348 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c02f00 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.435 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a010d0 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.436 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff13b0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.436 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff6430 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.437 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c03450 of class NSDeviceRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.437 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff8150 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.437 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fecf10 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.535 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff25f0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.537 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a056d0 of class NSCustomReleaseData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.537 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a03e00 of class NSBitmapImageRep autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.537 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a06a60 of class NSImage autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.538 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a03e70 of class __NSArray0 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.538 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07120 of class NSGradientPatternColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.624 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffbc30 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.625 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fef7b0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.626 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07440 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.627 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07b70 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.627 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07bb0 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.627 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07c10 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.627 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07e40 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.719 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffbc30 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.719 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c07c80 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.720 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff3130 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.720 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fefcd0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.720 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818060 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.720 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818520 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.818 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a074f0 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.818 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffab10 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.818 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900b70 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.819 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900110 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.819 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fede90 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.819 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901190 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.919 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07570 of class NSCalibratedRGBColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.920 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1eb0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.921 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff7010 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.921 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fed730 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.921 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fedb30 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:26.921 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fee3d0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.013 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff4710 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.014 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1d90 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.014 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffbb50 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.015 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c08b60 of class NSColorSpaceColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.015 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fee990 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.015 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff8b30 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.016 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fee810 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.094 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fed4f0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.095 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fefdb0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.095 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff02f0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a076a0 of class NSMenuItemHighlightColor autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff48b0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.096 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fece70 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ffae30 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff9e70 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff42b0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70fedeb0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901720 of class __NSArrayReverseEnumerator autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.195 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a073a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901b90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07400 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d160 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901be0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901c40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901c90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901cf0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901d50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902240 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049022a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902300 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01b40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01cb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.452 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01d10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.452 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01d60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.453 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01db0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.453 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901db0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.453 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07460 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.454 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a071a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.454 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a077f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.542 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07840 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.542 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a078a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.543 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a078f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.543 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c03870 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.543 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345c960 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.544 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030116b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.636 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103459800 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.636 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c08750 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.636 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c087b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.637 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902360 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.637 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475ff0 of class NSConcreteData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.640 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10090d790 of class __NSArrayReverseEnumerator autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.725 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103002eb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.726 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103025c40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.726 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103001dc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.726 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103026650 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.727 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301c200 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.727 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346cbd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.727 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103459880 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.834 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009166b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.835 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100905d80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.835 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cb80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.835 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cbd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.835 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cc20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.836 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cc70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.836 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091ccc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.952 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034765f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.953 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103476640 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.953 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103468380 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.953 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034683d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.954 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345e140 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:27.954 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10345e190 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.052 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cd10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.053 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cd60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.053 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092d9a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.053 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092d9f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.053 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092da40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.054 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092da90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.054 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dae0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.146 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092db30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.146 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092db80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.146 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dbd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.146 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dc20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.147 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dc70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.147 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dcc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.235 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01480 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.236 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b014d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.236 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01520 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.237 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01570 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.237 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b015c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.237 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01610 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.237 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01660 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.329 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b016b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.329 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01700 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.330 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01750 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.330 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b017a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.330 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b017f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.330 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01840 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.418 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01890 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.419 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02200 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.419 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02250 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.419 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b022a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.420 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b022f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.420 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02340 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.420 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02390 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.518 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dd10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.519 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dd60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.519 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ddb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.519 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092de00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.520 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092de50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.520 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dea0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.619 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103014de0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.619 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103018380 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.619 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300d0c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.620 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030204a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.620 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103011f70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.620 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301f030 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.620 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300df50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.709 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00cf0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.709 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c02f70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.710 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c03ba0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.710 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816150 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.710 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048179e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.711 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301d9f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.796 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301a4c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.797 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300d1b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.797 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103016da0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.797 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301f2f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.797 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301d440 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.798 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103011dd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.798 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300fde0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.891 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b01a60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.891 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b023e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.892 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103014080 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.892 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301b9e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.892 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301c150 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.893 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103016e40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.975 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301c460 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.976 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103021bc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.976 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091cdb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.976 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091ce00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.977 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103001cd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.977 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103002130 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:28.977 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103452d70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.058 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091ce50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.058 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092df80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.059 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092dfd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.059 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e020 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.059 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e070 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.059 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e0c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.142 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e110 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.143 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e160 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.143 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02430 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.143 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02520 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.143 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02960 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.144 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b029b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.144 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02a00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.223 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e1b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.223 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e200 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.223 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e250 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.224 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e2a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.224 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103021960 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.224 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103025b90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.313 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02a50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.313 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x106000030 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.314 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c08610 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.314 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c08660 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.314 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c086b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.314 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c08700 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.315 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c004e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.408 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a06c40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.409 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a071f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.409 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07240 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.409 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07290 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.409 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a079e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.410 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07a30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.492 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e2f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.492 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103022320 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.492 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103009380 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.493 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013fc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.493 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103026b30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.493 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030091e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.493 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103024db0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.573 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e340 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.573 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e390 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.574 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e7d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.574 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e820 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.574 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e880 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.575 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e8e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.661 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301ca30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.662 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103022250 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.662 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e930 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.663 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e980 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.663 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092def0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.663 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ea70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.663 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eac0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.743 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eb10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.744 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eb60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.744 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ebb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.745 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ec00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.745 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ec50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.745 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eca0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.746 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ecf0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.828 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ed40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.828 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eda0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.829 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ee00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.829 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ee50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.829 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eea0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.829 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092eef0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.908 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ef40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.909 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ef90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.909 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092efe0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.909 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f030 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.910 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f080 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.910 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f0d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.910 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f120 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.991 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103452dc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.992 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103410880 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.992 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034108d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.992 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034582f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.993 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104e00050 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:29.993 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049023c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.075 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458340 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.076 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103473b80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.076 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103473bd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.076 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464e10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.077 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030222a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.077 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103014aa0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.077 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464e60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.159 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f170 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.159 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902410 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.160 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00530 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.160 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00580 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.160 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00450 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.160 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00670 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.242 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901e00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.242 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07950 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.243 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900c20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.243 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900c70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.243 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900cc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.243 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900d10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.244 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900e20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.325 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900e70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.325 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900ec0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.325 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900f10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.325 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900f60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.326 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c005d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.326 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00620 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.412 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900fb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.413 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901000 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.413 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104901050 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.413 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049024b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.414 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902500 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.414 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902550 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.414 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049025a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.508 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049025f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.508 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c006c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.508 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902640 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.508 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902690 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.509 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07a80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.509 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900d60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.595 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07ad0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07be0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07c30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07c80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.596 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07cd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.597 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07d20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.597 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07d70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07dc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07e10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07e60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07eb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07f00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07f50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07fa0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104900db0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049026e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902730 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902c50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902ca0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902cf0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07ff0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08040 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08090 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a080e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818140 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818190 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.941 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902d40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08130 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048181e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00720 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00830 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00880 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:30.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09060 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.024 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08180 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.024 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a081d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048172d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817160 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048171b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817200 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103460150 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034601a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817250 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817a90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817ae0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.111 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817be0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.111 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c00770 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.191 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07b20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a07b70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08220 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08720 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08770 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a087c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.274 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902780 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c007c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c090b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049027d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902d90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902de0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902e30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902f30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c091c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09210 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09260 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c092b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09300 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09350 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c093a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c093f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09440 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09490 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c094e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09530 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09580 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c095d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09620 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09670 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c096c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09710 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09760 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09ba0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09bf0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09c40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09c90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09ce0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.611 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09d30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09d80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902e80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08270 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a082c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08810 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08920 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08970 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09dd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09e20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08860 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a088b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09e70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09ec0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.857 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a089c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817b30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817b80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817c30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817d40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08ad0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902ed0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.941 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08b20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08b70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08bc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103468b90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103468be0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:31.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464880 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034648d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103464920 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092e9d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ea20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013c80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09130 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817d90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09f10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a020 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a070 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a0c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08a10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08a60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02ab0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02b00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02b50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013cd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02480 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09f60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c09fb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08c10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a110 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a160 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a270 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a2c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a310 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902f80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104902fd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049030f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903140 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903580 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049035d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903620 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903670 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049036c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a1e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a360 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a470 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a4c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817c80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104817cd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f1c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f210 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f320 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f370 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f3c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f410 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f460 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f4b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f500 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f550 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f5a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b024d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08c90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903050 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049030a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02ba0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02cb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.695 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903710 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.774 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475930 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475980 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b030f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03140 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03190 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b031e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f260 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034759d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034733f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03230 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f2b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08ce0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903760 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.941 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08d30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815b40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815b90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815be0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815ce0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:32.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815d30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049037b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103001e50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f5f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f640 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103001ea0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f690 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f6e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458a70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458ac0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301fc30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103473360 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f7f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f840 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.190 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b02c20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.191 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fc80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.191 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fcd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.191 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fd20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fd70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fdc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fe10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346a100 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08e40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03280 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03320 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fe60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092feb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ff00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ff50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08d80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08dd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903830 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903880 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049038d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a3b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a400 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a510 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a620 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049039d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903a20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08e90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903920 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903970 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903a70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08fa0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346a070 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.528 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103472e50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.606 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08ff0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.606 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a560 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.607 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301fc80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.607 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a5b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a670 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a780 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a7d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a820 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08ee0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a08f30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09040 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09150 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a091a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a870 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a8c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a910 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a960 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a9b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0aa00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0aa50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09090 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a090e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a091f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09300 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09350 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a093a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0aaa0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0aaf0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09240 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09290 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.945 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a093f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.945 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a098f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:33.945 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09940 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09990 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903ac0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903b10 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903b60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903c60 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903cb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.107 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ab40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903d00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903d50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903da0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903df0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903e40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903e90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ab90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815c30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815c80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815d80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.195 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815e90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.195 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815ee0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a099e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815f30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816a30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816a80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903ee0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903f30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.279 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903bb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09440 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09490 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09a30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09f30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09f80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.361 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09fd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a020 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a070 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a0c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a110 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.445 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a160 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.445 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a1b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.445 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a6c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903c00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904050 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815dd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104815e20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816ad0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816be0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x107900000 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x107a00000 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103472dc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346d460 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816b20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816b70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816c30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049040a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049040f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.691 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904140 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904190 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049041e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904230 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904280 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049046c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904710 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904760 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049047b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904800 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904850 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09a80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a09ad0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a200 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a310 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a360 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a3b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0a710 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0abe0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816c80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816cd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816de0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816e30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:34.944 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816e80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0acf0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ad40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ad90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ade0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ae30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ae80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049048a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049048f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904940 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904990 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049049e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.111 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904a30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.111 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904ea0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092ffa0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b033a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b033f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03500 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03550 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b035a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092fff0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930040 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300d380 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458890 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0aed0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.277 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0af20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.278 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0af70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.357 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a400 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a450 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ac30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a280 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ac80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904ef0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904f40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0afc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b0d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b120 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816d20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930090 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009300e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930130 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930180 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009301d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930220 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930660 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03440 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.527 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03490 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b035f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03700 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904f90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a4a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104903fb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a4f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904000 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.692 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104904fe0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b010 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b060 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b170 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b280 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b2d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.775 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009306b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03750 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10092f760 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930700 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03640 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930750 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.858 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03690 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10300d3d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103022180 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b1f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b320 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b430 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b480 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.941 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a600 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a650 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905030 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a570 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a6a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:35.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a7b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10346d3d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103466270 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a720 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a800 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a910 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a960 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.027 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a9b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104816d70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905080 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030221d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013bb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013c00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030131f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009307a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009307f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930900 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930950 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009309a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1009309f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.194 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930a40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.274 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034588e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103458930 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034766c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103476710 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103476760 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475430 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0aa00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.358 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03b90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x106100020 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b4d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0aa50 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0aaa0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0aaf0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103013240 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.441 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930840 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930890 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930a90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b520 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905130 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ab40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ab90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.525 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0abe0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ac30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ac80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0acd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.526 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ad20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.608 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049050d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1061000a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1030223e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.609 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103475480 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103022430 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.610 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930ae0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.693 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818550 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0ad70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104e000f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.694 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104e000a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.695 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048185a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.695 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048186b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.695 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818af0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049055c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.776 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905610 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905660 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905780 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049057d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.777 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905820 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.859 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a850 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930b30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.860 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1061000f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.861 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0a8a0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.861 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818b40 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.861 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049056b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.862 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905700 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818b90 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104e00140 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.942 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905870 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905980 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049059d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:36.943 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b370 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.024 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0adc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0aed0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0af20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.025 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b3c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b570 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b680 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.026 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0af70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930b80 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.108 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034754d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301a590 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.109 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034661e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1034752b0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.110 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b5c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.191 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104a0afc0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b610 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b6d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b7e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.192 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b830 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b880 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.193 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b8d0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.274 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03be0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.274 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10301a5e0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1048185f0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.275 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818640 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x106100140 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x106100190 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.276 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03c30 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930bd0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.359 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x103018580 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03cb0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x107800050 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.360 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104818be0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.361 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104b03d00 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.442 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100930c20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b750 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0b920 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.443 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x1049058c0 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905910 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905a20 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.444 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104905a70 of class NSCFData autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:37.524 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c0ba30 of class NSCFData autoreleased with no pool in place - just leaking
> Loading international/mule-util...
> Loading international/ucs-normalize...
> Loading term/ns-win...
> Loading mwheel...
> Loading progmodes/elisp-mode...
> Loading emacs-lisp/float-sup...
> Loading vc/vc-hooks...
> Loading vc/ediff-hook...
> Loading uniquify...
> Loading electric...
> Loading paren...
> Loading emacs-lisp/shorthands...
> Loading emacs-lisp/eldoc...
> Loading cus-start...
> Loading tooltip...
> Loading international/iso-transl...
> Loading leim/leim-list.el (source)...
> Waiting for git...
> Waiting for git...
> Finding pointers to doc strings...
> Finding pointers to doc strings...done
> Pure-hashed: 16884 strings, 5378 vectors, 46724 conses, 4853 bytecodes, 280 others
> Dumping under the name emacs.pdmp
> Dumping fingerprint: c91c392f7d55d7a2a1e43f450e2589412fe7a36cd7df15aac9c94b0942baab5d
> Dump complete
> Byte counts: header=100 hot=11122668 discardable=139408 cold=4954800
> Reloc counts: hot=635931 discardable=4978
> Adding name emacs-29.0.50.1
> Adding name emacs-29.0.50.1.pdmp
> 2022-04-24 17:05:40.175 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c29860 of class __NSCFDate autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:40.175 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c13b00 of class NSCFTimer autoreleased with no pool in place - just leaking
> cp -f emacs.pdmp bootstrap-emacs.pdmp 

Does this happen only when dumping (ignoring the gdb case?)

If so, I don't think it's anything to worry about, and I see something
similar on GNUstep as well.




^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-25  3:46 Keith David Bershatsky
  2022-04-25  4:13 ` Po Lu
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-25  3:46 UTC (permalink / raw)
  To: Po Lu; +Cc: Mattias Engdegård, Alan Third, Paul Eggert, emacs-devel

I am uncertain whether this happens only when dumping (ignoring the gdb case), but here is a better redaction of the most recent build:

rm -f emacs && cp -f temacs emacs
LC_ALL=C ./temacs -batch  -l loadup --temacs=pdump \
  --bin-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/ --eln-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Frameworks/
2022-04-24 17:05:19.291 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100916490 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 17:05:19.293 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091a1a0 of class NSPathStore2 autoreleased with no pool in place - just leaking

* * *

Loading term/common-win...
2022-04-24 17:05:22.531 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d040 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 17:05:22.532 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1cf0 of class NSCFString autoreleased with no pool in place - just leaking

* * *

Loading international/mule-util...
Loading international/ucs-normalize...

* * *

kAdding name emacs-29.0.50.1
Adding name emacs-29.0.50.1.pdmp
2022-04-24 17:05:40.175 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c29860 of class __NSCFDate autoreleased with no pool in place - just leaking
2022-04-24 17:05:40.175 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c13b00 of class NSCFTimer autoreleased with no pool in place - just leaking
cp -f emacs.pdmp bootstrap-emacs.pdmp

* * *

rm -f emacs && cp -f temacs emacs
LC_ALL=C ./temacs -batch  -l loadup --temacs=pdump \
  --bin-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/ --eln-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Frameworks/
2022-04-24 18:06:53.950 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x100916490 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 18:06:53.952 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10091a1a0 of class NSPathStore2 autoreleased with no pool in place - just leaking

* * *

Loading term/common-win...
2022-04-24 18:06:57.116 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10491a1d0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 18:06:57.117 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1cf0 of class NSCFString autoreleased with no pool in place - just leaking

* * *

Adding name emacs-29.0.50.1
Adding name emacs-29.0.50.1.pdmp
2022-04-24 18:07:14.405 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x104e031a0 of class __NSCFDate autoreleased with no pool in place - just leaking
2022-04-24 18:07:14.405 temacs[33157:607] *** __NSAutoreleaseNoPool(): Object 0x10300d530 of class NSCFTimer autoreleased with no pool in place - just leaking
cp -f emacs.pdmp bootstrap-emacs.pdmp
/usr/bin/make -C ../nextstep all

* * *

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-24-2022 20:09:07] <25 Apr 2022 11:09:07 +0800>
> From: Po Lu <luangruo@yahoo.com>
> 
> 
> Does this happen only when dumping (ignoring the gdb case?)
> 
> If so, I don't think it's anything to worry about, and I see something
> similar on GNUstep as well.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-25  3:46 Keith David Bershatsky
@ 2022-04-25  4:13 ` Po Lu
  0 siblings, 0 replies; 65+ messages in thread
From: Po Lu @ 2022-04-25  4:13 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Alan Third, emacs-devel, Mattias Engdegård, Paul Eggert

Keith David Bershatsky <esq@lawlist.com> writes:

> I am uncertain whether this happens only when dumping (ignoring the gdb case), but here is a better redaction of the most recent build:
>
> rm -f emacs && cp -f temacs emacs
> LC_ALL=C ./temacs -batch  -l loadup --temacs=pdump \
>   --bin-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/ --eln-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Frameworks/
> 2022-04-24 17:05:19.291 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x100916490 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:19.293 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10091a1a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
>
> * * *
>
> Loading term/common-win...
> 2022-04-24 17:05:22.531 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x10482d040 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:22.532 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x7fff70ff1cf0 of class NSCFString autoreleased with no pool in place - just leaking
>
> * * *
>
> Loading international/mule-util...
> Loading international/ucs-normalize...
>
> * * *
>
> kAdding name emacs-29.0.50.1
> Adding name emacs-29.0.50.1.pdmp
> 2022-04-24 17:05:40.175 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c29860 of class __NSCFDate autoreleased with no pool in place - just leaking
> 2022-04-24 17:05:40.175 temacs[6082:607] *** __NSAutoreleaseNoPool(): Object 0x104c13b00 of class NSCFTimer autoreleased with no pool in place - just leaking
> cp -f emacs.pdmp bootstrap-emacs.pdmp

I guess it's the result of the call to `ns-list-colors'.  I installed a
change to fix that.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-25  5:17 Keith David Bershatsky
  2022-04-25  5:43 ` Po Lu
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-25  5:17 UTC (permalink / raw)
  To: Po Lu; +Cc: Alan Third, Mattias Engdegård, Paul Eggert, emacs-devel

There are substantially less "leaking" messages following the most recent revision to the master.  Here is the updated build excerpt with the word "leaking":

  ELC      ../lisp/x-dnd.elc
rm -f emacs && cp -f temacs emacs
LC_ALL=C ./temacs -batch  -l loadup --temacs=pdump \
		--bin-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/ --eln-dest /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/Frameworks/
2022-04-24 21:43:32.701 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x100916490 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.703 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091a1a0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.703 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x1009165a0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.704 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x1009096e0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.704 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x1009097d0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.704 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x100909850 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.725 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x100909880 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.725 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x1009098c0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.726 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x1009099d0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.726 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x100909b10 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.726 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x100909a00 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.727 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x100909a80 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.790 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x100909ac0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.791 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091b030 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.791 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x1009099a0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.791 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091afb0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.792 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091b140 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.792 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091b0c0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.858 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091b0f0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.859 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091b1d0 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.859 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091b6b0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.859 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091b7a0 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.859 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091b710 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.860 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091d920 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.861 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091d950 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.939 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091d990 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.942 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x103002770 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.943 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x100909fd0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-24 21:43:32.943 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x10091b8a0 of class NSCFData autoreleased with no pool in place - just leaking
Loading loadup.el (source)...
Dump mode: pdump
Using load-path (/Users/HOME/Desktop/emacs/lisp)
Loading emacs-lisp/debug-early...
Loading emacs-lisp/byte-run...
Loading emacs-lisp/backquote...

* * *

Pure-hashed: 16884 strings, 5374 vectors, 46724 conses, 4853 bytecodes, 280 others
Dumping under the name emacs.pdmp
Dumping fingerprint: f1e4a8bd5c5b5818ac7fcc6fc0e7b164a626d232a8806dabc96634f3c7f8b7cb
Dump complete
Byte counts: header=100 hot=11122668 discardable=139408 cold=4954800
Reloc counts: hot=635931 discardable=4978
Adding name emacs-29.0.50.1
Adding name emacs-29.0.50.1.pdmp
2022-04-24 21:43:38.376 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x1030ab230 of class __NSCFDate autoreleased with no pool in place - just leaking
2022-04-24 21:43:38.377 temacs[15290:607] *** __NSAutoreleaseNoPool(): Object 0x1030aa670 of class NSCFTimer autoreleased with no pool in place - just leaking
cp -f emacs.pdmp bootstrap-emacs.pdmp 
/usr/bin/make -C ../nextstep all
rm -rf /Users/HOME/Desktop/emacs/nextstep/Emacs.app

* * *


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-24-2022 21:13:00] <25 Apr 2022 12:13:00 +0800>
> From: Po Lu <luangruo@yahoo.com>
>
> * * *
> 
> I guess it's the result of the call to `ns-list-colors'.  I installed a
> change to fix that.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-25  5:17 Keith David Bershatsky
@ 2022-04-25  5:43 ` Po Lu
  2022-04-25  9:56   ` Alan Third
  0 siblings, 1 reply; 65+ messages in thread
From: Po Lu @ 2022-04-25  5:43 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Alan Third, Mattias Engdegård, Paul Eggert, emacs-devel

Keith David Bershatsky <esq@lawlist.com> writes:

> There are substantially less "leaking" messages following the most
> recent revision to the master.  Here is the updated build excerpt with
> the word "leaking":

Should be fixed now, thanks.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-25  5:43 ` Po Lu
@ 2022-04-25  9:56   ` Alan Third
  2022-04-25 10:30     ` Po Lu
  0 siblings, 1 reply; 65+ messages in thread
From: Alan Third @ 2022-04-25  9:56 UTC (permalink / raw)
  To: Po Lu; +Cc: Mattias Engdegård, Keith David Bershatsky, emacs-devel

On Mon, Apr 25, 2022 at 01:43:49PM +0800, Po Lu wrote:
> Keith David Bershatsky <esq@lawlist.com> writes:
> 
> > There are substantially less "leaking" messages following the most
> > recent revision to the master.  Here is the updated build excerpt with
> > the word "leaking":
> 
> Should be fixed now, thanks.

Hi, is there any reason the creation of the autorelease pool in
emacs.c's main function couldn't just be moved to before dumping occurs?
-- 
Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-25  9:56   ` Alan Third
@ 2022-04-25 10:30     ` Po Lu
  2022-04-25 18:07       ` Alan Third
  0 siblings, 1 reply; 65+ messages in thread
From: Po Lu @ 2022-04-25 10:30 UTC (permalink / raw)
  To: Alan Third; +Cc: Keith David Bershatsky, Mattias Engdegård, emacs-devel

Alan Third <alan@idiocy.org> writes:

> Hi, is there any reason the creation of the autorelease pool in
> emacs.c's main function couldn't just be moved to before dumping
> occurs?

It's created before `ns_init_locale' is called, since that needs an
autorelease pool to be present.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-25 10:30     ` Po Lu
@ 2022-04-25 18:07       ` Alan Third
  2022-04-26  0:10         ` Po Lu
  0 siblings, 1 reply; 65+ messages in thread
From: Alan Third @ 2022-04-25 18:07 UTC (permalink / raw)
  To: Po Lu; +Cc: Mattias Engdegård, Keith David Bershatsky, emacs-devel

On Mon, Apr 25, 2022 at 06:30:13PM +0800, Po Lu wrote:
> Alan Third <alan@idiocy.org> writes:
> 
> > Hi, is there any reason the creation of the autorelease pool in
> > emacs.c's main function couldn't just be moved to before dumping
> > occurs?
> 
> It's created before `ns_init_locale' is called, since that needs an
> autorelease pool to be present.

I know that. I'm asking if there's a reason we can't move it to the
top of the function since we now have other functions that need an
autorelease pool to be present?
-- 
Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-25  1:35 Keith David Bershatsky
@ 2022-04-25 18:08 ` Alan Third
  0 siblings, 0 replies; 65+ messages in thread
From: Alan Third @ 2022-04-25 18:08 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Po Lu, Mattias Engdegård, Paul Eggert, emacs-devel

On Sun, Apr 24, 2022 at 06:35:40PM -0700, Keith David Bershatsky wrote:
> Yes, that change permitted the build to succeed and it creates a
> working version of Emacs.

Thanks! I'll push this to master now.
-- 
Alan Third



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-25 18:07       ` Alan Third
@ 2022-04-26  0:10         ` Po Lu
  0 siblings, 0 replies; 65+ messages in thread
From: Po Lu @ 2022-04-26  0:10 UTC (permalink / raw)
  To: Alan Third; +Cc: Keith David Bershatsky, Mattias Engdegård, emacs-devel

Alan Third <alan@idiocy.org> writes:

> I know that. I'm asking if there's a reason we can't move it to the
> top of the function since we now have other functions that need an
> autorelease pool to be present?

That could cause other data to be silently leaked without a warning
message, in contrast to what we have now, since presumably the
"toplevel" autorelease pool will only be released when the program
exits.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
@ 2022-04-26  2:56 Keith David Bershatsky
  2022-04-26  3:14 ` Po Lu
  0 siblings, 1 reply; 65+ messages in thread
From: Keith David Bershatsky @ 2022-04-26  2:56 UTC (permalink / raw)
  To: Po Lu; +Cc: Alan Third, Mattias Engdegård, Paul Eggert, emacs-devel

With the recent changes to the master, Emacs now builds and creates a working version on OSX 10.6.8.  The "leaking" messages during the build process have been eliminated.  The only place I see the "leaking" messages now is at the outset when launching Emacs under gdb:

(gdb) run
Starting program: /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs 
2022-04-25 19:50:53.804 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x100918460 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-25 19:50:53.806 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x10091c290 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-25 19:50:53.806 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x1009185f0 of class NSCFString autoreleased with no pool in place - just leaking
2022-04-25 19:50:53.806 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cc40 of class NSCFArray autoreleased with no pool in place - just leaking
2022-04-25 19:50:53.807 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cd30 of class NSPathStore2 autoreleased with no pool in place - just leaking
2022-04-25 19:50:53.807 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x10091ce90 of class NSCFData autoreleased with no pool in place - just leaking
[New Thread 0x1903 of process 28144]
[New Thread 0x1a03 of process 28144]
[New Thread 0x1b03 of process 28144]


;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

> Date: [04-24-2022 22:43:49] <25 Apr 2022 13:43:49 +0800>
> From: Po Lu <luangruo@yahoo.com>
> To: Keith David Bershatsky <esq@lawlist.com>
> Cc: Alan Third <athird@googlemail.com>, Mattias Engdegård <mattiase@acm.org>, Paul Eggert <eggert@cs.ucla.edu>, emacs-devel@gnu.org
> Subject: Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
> 
> Keith David Bershatsky <esq@lawlist.com> writes:
> 
> > There are substantially less "leaking" messages following the most
> > recent revision to the master.  Here is the updated build excerpt with
> > the word "leaking":
> 
> Should be fixed now, thanks.



^ permalink raw reply	[flat|nested] 65+ messages in thread

* Re: Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat'
  2022-04-26  2:56 Keith David Bershatsky
@ 2022-04-26  3:14 ` Po Lu
  0 siblings, 0 replies; 65+ messages in thread
From: Po Lu @ 2022-04-26  3:14 UTC (permalink / raw)
  To: Keith David Bershatsky
  Cc: Alan Third, Mattias Engdegård, Paul Eggert, emacs-devel

Keith David Bershatsky <esq@lawlist.com> writes:

> With the recent changes to the master, Emacs now builds and creates a
> working version on OSX 10.6.8.  The "leaking" messages during the
> build process have been eliminated.  The only place I see the
> "leaking" messages now is at the outset when launching Emacs under
> gdb:
>
> (gdb) run
> Starting program: /Users/HOME/Desktop/emacs/nextstep/Emacs.app/Contents/MacOS/Emacs 
> 2022-04-25 19:50:53.804 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x100918460 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-25 19:50:53.806 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x10091c290 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-25 19:50:53.806 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x1009185f0 of class NSCFString autoreleased with no pool in place - just leaking
> 2022-04-25 19:50:53.806 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cc40 of class NSCFArray autoreleased with no pool in place - just leaking
> 2022-04-25 19:50:53.807 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x10091cd30 of class NSPathStore2 autoreleased with no pool in place - just leaking
> 2022-04-25 19:50:53.807 Emacs[28144:60f] *** __NSAutoreleaseNoPool(): Object 0x10091ce90 of class NSCFData autoreleased with no pool in place - just leaking
> [New Thread 0x1903 of process 28144]
> [New Thread 0x1a03 of process 28144]
> [New Thread 0x1b03 of process 28144]

I don't see that here (with GNUstep), and as such have no idea how to
fix it.  Sorry about that.



^ permalink raw reply	[flat|nested] 65+ messages in thread

end of thread, other threads:[~2022-04-26  3:14 UTC | newest]

Thread overview: 65+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-18  2:24 Emacs 28 on OSX: emacsclient.c:1415: warning: implicit declaration of function 'openat' Keith David Bershatsky
2022-04-18  2:53 ` Po Lu
  -- strict thread matches above, loose matches on Subject: below --
2022-04-26  2:56 Keith David Bershatsky
2022-04-26  3:14 ` Po Lu
2022-04-25  5:17 Keith David Bershatsky
2022-04-25  5:43 ` Po Lu
2022-04-25  9:56   ` Alan Third
2022-04-25 10:30     ` Po Lu
2022-04-25 18:07       ` Alan Third
2022-04-26  0:10         ` Po Lu
2022-04-25  3:46 Keith David Bershatsky
2022-04-25  4:13 ` Po Lu
2022-04-25  1:49 Keith David Bershatsky
2022-04-25  3:09 ` Po Lu
2022-04-25  1:35 Keith David Bershatsky
2022-04-25 18:08 ` Alan Third
2022-04-24 17:02 Keith David Bershatsky
2022-04-24 19:22 ` Alan Third
2022-04-24  0:08 Keith David Bershatsky
2022-04-24  9:03 ` Alan Third
2022-04-23  4:33 Keith David Bershatsky
2022-04-23 22:04 ` Alan Third
2022-04-22 21:29 Keith David Bershatsky
2022-04-23 22:13 ` Alan Third
2022-04-22 21:23 Keith David Bershatsky
2022-04-21 22:40 Keith David Bershatsky
2022-04-21 22:44 ` Alan Third
2022-04-21 20:51 Keith David Bershatsky
2022-04-21 22:22 ` Alan Third
2022-04-21 17:52 Keith David Bershatsky
2022-04-21 19:21 ` Alan Third
2022-04-21  2:22 Keith David Bershatsky
2022-04-21  0:51 Keith David Bershatsky
2022-04-21  2:05 ` Po Lu
2022-04-21  5:09 ` Alan Third
2022-04-20 13:55 Keith David Bershatsky
2022-04-20 16:48 ` Alan Third
2022-04-19  4:36 Keith David Bershatsky
2022-04-19  4:38 ` Po Lu
2022-04-19  1:24 Keith David Bershatsky
2022-04-19  2:35 ` Po Lu
2022-04-19  4:19   ` Alan Third
2022-04-19  4:24     ` Po Lu
2022-04-19  6:04     ` Eli Zaretskii
2022-04-20  1:23     ` Po Lu
2022-04-20  8:07       ` Alan Third
2022-04-19  2:56 ` Paul Eggert
2022-04-18 20:43 Keith David Bershatsky
2022-04-18 19:51 Keith David Bershatsky
2022-04-18 19:54 ` Paul Eggert
2022-04-19  1:00 ` Po Lu
2022-04-18  0:38 Keith David Bershatsky
2022-04-18  0:58 ` Paul Eggert
2022-04-18  1:39 ` Po Lu
2022-04-17 21:57 Keith David Bershatsky
2022-04-17 23:21 ` Paul Eggert
2022-04-17 18:45 Keith David Bershatsky
2022-04-17 20:37 ` Alan Third
2022-04-17 20:37 ` Paul Eggert
2022-04-15 19:11 Keith David Bershatsky
2022-04-17  9:01 ` Mattias Engdegård
2022-04-17 17:49   ` Paul Eggert
2022-04-17 19:12     ` Eli Zaretskii
2022-04-17 20:36       ` Paul Eggert
2022-04-18  4:49         ` Eli Zaretskii

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).