Re: error running emacs installed with guix

2017-11-23 Thread Adonay Felipe Nogueira
An interesting update:

If you try to make sure that Emacs is rebult, even using the
same/current package definition, then the result works as expected.

In my case, I made a local package definition for Emacs, and changed the
phases or snippet enough to modify the source files a little, like so:

Before:

--8<---cut here---start->8---
   (with-output-to-file (string-append lisp-dir "/site-start.el")
 (lambda ()
   (display
(string-append "(when (require 'guix-emacs nil t)\n"
   "  (guix-emacs-autoload-packages))\n"
--8<---cut here---end--->8---

After:

--8<---cut here---start->8---
   (with-output-to-file (string-append lisp-dir "/adfeno-dummy.el")
 (lambda ()
   (display
(string-append "(print \"adfeno\")\n"
   (with-output-to-file (string-append lisp-dir "/site-start.el")
 (lambda ()
   (display
(string-append "(when (require 'guix-emacs nil t)\n"
   "  (guix-emacs-autoload-packages))\n"
--8<---cut here---end--->8---

Notice that I didn't change the "before" part, I just added a code that
simply creates a file called "adfeno-dummy.el".

Now, I wonder how to tell `guix package' to install what was just built?

At any case, I hope this helps. ;)

2017-11-12T11:56:43-0800 Mason Hock wrote:
> I have installed emacs with Guix. When I try to run it I get
>
> Gtk-Message: Failed to load module "canberra-gtk-module"
> Gtk-Message: Failed to load module "topmenu-gtk-module"
>
> followed by many
>
> (emacs-25-3:7212): Gtk-WARNING **: Theme parsing error:*
>
> messages, and then
>
> GLib-GIO-Message: Using the 'memory' GSettings backend.  Your settings
> will not be saved or shared with other applications.
> Fatal error 6: Aborted
> Backtrace:
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x81393ec]

[...]

> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> ...
> Aborted (core dumped)
>
>
> Does anyone know what to make of this?
>
> Thanks,
>
> Mason



Re: error running emacs installed with guix

2017-11-23 Thread Adonay Felipe Nogueira
Just for the record, the date ranges are indeed right, no need to make
the leftmost date flexible --- at least if you take into account only
Guix's repository.

There is a related item in help-guix ([1]), and there was an attempt made
by me to get a backtrace and a strace --- although I still have to find
out how to install debug symbols for GNU Emacs.

As I replied there ([2]), it might be due to a change between
2017-10-10T08:25 BRT and 2017-10-30T16:27 BRST --- either in a Guix
package definition or in the upstreams.

As Mekeor Melire ([1] and Daniel Pimentel ([2]) pointed out it, might be
an issue related to GTK+. But I also don't discard related components.

One could list commits between the given dates by doing:

--8<---cut here---start->8---
git log --after="2017-10-10T08:25 BRT" --before="2017-10-30T16:27 BRST"
--8<---cut here---end--->8---

Now we must test by making local copies of the possibly affected package
definitions, reverting the commits, and building our Emacs locally.

[1] .

[2] .

2017-11-13T12:44:59-0200 Adonay Felipe Nogueira wrote:
> If you don't mind, I took the liberty to also try following your
> suggestion.
>
> Just to clarify: I'm currently using Emacs 25.3 from an old `guix pull'
> --- the working derivation was created in my computer in
> 2017-10-10T08:25 BRT (Brasília Time, which is UTC -03:00) ---. The
> problematic GNU Guix revision for Emacs seems to come from a commit
> before 2017-10-30T16:27 BRST (Brasília Summer Time, currently UTC
> -02:00), but not too far behind.
>
> It's too bad that the current package definition for Emacs doesn't
> follow the "release.revision-commit" versioning suggested in the
> documentation for GNU Guix ([1]). We could have a chance to get the exact
> revision if that versioning were present.
>
> For the record, I don't know if this helps, but I noticed that my normal
> user's profile generation "manifest" file changed the output of Emacs
> version 25.3:
>
> - working Emacs 25.3:
>   /gnu/store/b1nbgnpifkisz4szmasxrwzqlgqagy8w-emacs-25.3
>
> - problematic Emacs 25.3:
>   /gnu/store/5746kfanppgapypjqhciarya48vp9xr3-emacs-25.3
>
> Again, problematic Emacs 25.3 comes from a commit between
> 2017-10-10T08:25 BRT and 2017-10-30T16:27 BRST --- although I think it
> would be a good idea to add some dates before the initial part of the
> range so as to accommodate the time it takes for the Emacs derivation to
> be made.
>
> Now for the attempt to use GDB.
>
> It's one of the fewer times I used GDB. I don't exactly know how to use
> it efficiently, because I'm not a programmer, so forgive me for being
> naive.
>
> Attempting to use GDB to debug
> "/gnu/store/5746kfanppgapypjqhciarya48vp9xr3-emacs-25.3/bin/emacs"
> directly (be that with or without "./core") makes GDB complain the
> executable format isn't recognized. I found that the "emacs" in question
> is a wrapper script that uses yet another wrapper script (which
> strangely seems to do/set the exact same variables as the parent
> wrapper) which finally runs the real Emacs. This "double-wrapper" is
> also present in the *working* Emacs 25.3.
>
> So I had to attempt to simulate the wrapper scripts by making a text
> file with the corresponding commands for GDB. The script is attached to
> this message. The commented parts (those starting with "#") are the
> parts I was unable to simulate --- because I know little about
> GDB. Besides in the `set env' commands I kept the Bash-specific
> ${VARIABLE:+:} syntax, but I don't know if GDB supports it.
>
> Having that GDB script ready, now I set the maximum size of core files
> to "unlimited" for the current shell (just in case):
>
> --8<---cut here---start->8---
> ulimit -c unlimited
> --8<---cut here---end--->8---
>
>
> And run:
>
> --8<---cut here---start->8---
> gdb -iex "set logging on gdb_emacs.log.txt" \
> -iex "set pagination off" \
> -iex "set args -Qnw" \
> -x "gdb_cmds.txt" \
> -ex "run" \
> -ex "generate-core-file emacs_core_dump" \
> -ex "continue" \
> -ex "target core emacs_core_dump" \
> -ex "backtrace" \
> -ex "quit" \
> 
> "/gnu/store/5746kfanppgapypjqhciarya48vp9xr3-emacs-25.3/bin/.emacs-25.3-real"
> --8<---cut here---end--->8---
>
>
> The log file is attached. I didn't attach the coredump (> 20 MiB), but
> if you want me to do so, please send a reply asking for it.
>
> I have also made an `strace' starting from the *wrapper* scripts, with:
>
> --8<---cut here---start->8---
> strace -f -o "strace_-f_gnu_store_5746kfa_emacs_-Qnw.txt" \
>"/gnu/store/5746kfanppgapypjqhciarya48vp9xr3-emacs-25.3/bin/emacs" \
> 

Re: error running emacs installed with guix

2017-11-17 Thread Mekeor Melire

I guess, this information is pretty obvious, but I can tell you that
this is a GTK specific issue. Personally, I use Emacs with
athena-toolkit (libxaw) instead of GTK. I did not encounter this problem
with it.

If you're interested, this is the package definition:

(define-public own-emacs
(package
(inherit emacs)
(name "emacs")
(synopsis "The extensible, customizable, self-documenting text 
editor
with athena toolkit" )
(build-system gnu-build-system)
(inputs `(
("inotify-tools" ,inotify-tools)
("libxaw" ,libxaw)
,@(alist-delete "gtk+" (package-inputs emacs
(arguments `(
#:configure-flags '("--with-x-toolkit=athena")
,@(package-arguments emacs)


Niall Dooley  writes:

> Just to add I too encounter the same problem.
>
> Niall
>
> On 12 November 2017 at 21:30, Adonay Felipe Nogueira 
> wrote:
>
>> Indeed, I also experienced this issue...
>>
>> Even starting Emacs with `-Q' option doesn't help.
>>
>> Mason Hock  writes:
>>
>> > I have installed emacs with Guix. When I try to run it I get
>> >
>> > Gtk-Message: Failed to load module "canberra-gtk-module"
>> > Gtk-Message: Failed to load module "topmenu-gtk-module"
>> >
>> > followed by many
>> >
>> > (emacs-25-3:7212): Gtk-WARNING **: Theme parsing error:*
>> >
>> > messages, and then
>> >
>> > GLib-GIO-Message: Using the 'memory' GSettings backend.  Your settings
>> > will not be saved or shared with other applications.
>> > Fatal error 6: Aborted
>> > Backtrace:
>> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
>> > 25.3[0x81393ec]
>> > ...
>> > Aborted (core dumped)
>> >
>> >
>> > Does anyone know what to make of this?
>> >
>> > Thanks,
>> >
>> > Mason


--
mekeor ~ EDD3 DFFA 76F6 11C0 145F 9A99 AC85 BAD8 A2F8 C868



Re: error running emacs installed with guix

2017-11-17 Thread Niall Dooley
Just to add I too encounter the same problem.

Niall

On 12 November 2017 at 21:30, Adonay Felipe Nogueira 
wrote:

> Indeed, I also experienced this issue...
>
> Even starting Emacs with `-Q' option doesn't help.
>
> Mason Hock  writes:
>
> > I have installed emacs with Guix. When I try to run it I get
> >
> > Gtk-Message: Failed to load module "canberra-gtk-module"
> > Gtk-Message: Failed to load module "topmenu-gtk-module"
> >
> > followed by many
> >
> > (emacs-25-3:7212): Gtk-WARNING **: Theme parsing error:*
> >
> > messages, and then
> >
> > GLib-GIO-Message: Using the 'memory' GSettings backend.  Your settings
> > will not be saved or shared with other applications.
> > Fatal error 6: Aborted
> > Backtrace:
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x81393ec]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8121e63]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x813947c]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e75]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176cce]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176c9e]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176cce]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x817705f]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176c9e]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176c9e]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176c9e]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176c9e]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176c9e]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176c9e]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176c9e]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176cce]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x817705f]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176cce]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x817705f]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x81770fd]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x817841e]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e7f]
> > /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> > 25.3[0x8176e5d]
> > ...
> > Aborted (core dumped)
> >
> >
> > Does anyone know what to make of this?
> >
> > Thanks,
> >
> > Mason
>
> --
> - https://libreplanet.org/wiki/User:Adfeno
> - Palestrante e consultor sobre /software/ livre (não confundir com
>   gratis).
> - "WhatsApp"? Ele não é livre. Por favor, veja formas de se comunicar
>   instantaneamente comigo no endereço abaixo.
> - Contato: https://libreplanet.org/wiki/User:Adfeno#vCard
> - Arquivos comuns aceitos (apenas sem DRM): Corel Draw, Microsoft
>   Office, MP3, MP4, WMA, WMV.
> - 

Re: error running emacs installed with guix

2017-11-13 Thread Adonay Felipe Nogueira
Indeed, I experienced the same issues when I followed his instructions
literally.

This happens because, apparently, the system distribution he's currently
using has `ulimit -c unlimited' already run for his current shell and
"/proc/sys/kernel/core_pattern" with the phrase/word "core" inside.

You can either do something similar to what I described in my reply to
his suggestion or do as I just told in the previous paragraph, like so:

--8<---cut here---start->8---
sudo -i
echo "core" > "/proc/sys/kernel/core_pattern"
exit
ulimit -c unlimited
emacs
# ... and now it crashes and "core" is dumped at your current working
# directory --- your user's home by default.
# Now I suggest you to exit this shell, this will set
# `ulimit -c' back to 0, disabling "core dumps".
--8<---cut here---end--->8---

Just to note that, in the reply I gave to his message, I forgot to
mention that I had to copy the contents of the first "wrapper" script to
a place where I can edit it, so I could make something similar to the
"gdb_cmds.txt" file.

The first "wrapper" script can be found by doing:

--8<---cut here---start->8---
which emacs
--8<---cut here---end--->8---

Mason Hock  writes:

> Thanks for your response.
>
> I get
>
>> gdb $(which emacs) ./core
> "/home/mason/.guix-profile/bin/emacs": not in executable format: File
> format not recognized
> /home/mason/./core: No such file or directory.
>
>> (gdb) bt
> No stack.
>
> Mason



Re: error running emacs installed with guix

2017-11-13 Thread Mason Hock
Thanks for your response.

I get

> gdb $(which emacs) ./core
"/home/mason/.guix-profile/bin/emacs": not in executable format: File
format not recognized
/home/mason/./core: No such file or directory.

> (gdb) bt
No stack.

Mason

On Mon, 2017-11-13 at 10:54 +0100, Ludovic Courtès wrote:
> Hi,
> 
> Mason Hock  skribis:
> 
> > 
> > I have installed emacs with Guix. When I try to run it I get
> > 
> > Gtk-Message: Failed to load module "canberra-gtk-module"
> > Gtk-Message: Failed to load module "topmenu-gtk-module"
> > 
> > followed by many
> > 
> > (emacs-25-3:7212): Gtk-WARNING **: Theme parsing error:*
> > 
> > messages, and then
> > 
> > GLib-GIO-Message: Using the 'memory' GSettings backend.  Your
> > settings
> > will not be saved or shared with other applications.
> > Fatal error 6: Aborted
> [...]
> 
> > 
> > Aborted (core dumped)
> Could you post the backtrace obtained with GDB?  You can run:
> 
>   gdb $(which emacs) ./core
> 
> and then:
> 
>   (gdb) bt
> 
> Thanks,
> Ludo’.



Re: error running emacs installed with guix

2017-11-13 Thread Ludovic Courtès
Hi,

Mason Hock  skribis:

> I have installed emacs with Guix. When I try to run it I get
>
> Gtk-Message: Failed to load module "canberra-gtk-module"
> Gtk-Message: Failed to load module "topmenu-gtk-module"
>
> followed by many
>
> (emacs-25-3:7212): Gtk-WARNING **: Theme parsing error:*
>
> messages, and then
>
> GLib-GIO-Message: Using the 'memory' GSettings backend.  Your settings
> will not be saved or shared with other applications.
> Fatal error 6: Aborted

[...]

> Aborted (core dumped)

Could you post the backtrace obtained with GDB?  You can run:

  gdb $(which emacs) ./core

and then:

  (gdb) bt

Thanks,
Ludo’.



Re: error running emacs installed with guix

2017-11-12 Thread Adonay Felipe Nogueira
Indeed, I also experienced this issue...

Even starting Emacs with `-Q' option doesn't help.

Mason Hock  writes:

> I have installed emacs with Guix. When I try to run it I get
>
> Gtk-Message: Failed to load module "canberra-gtk-module"
> Gtk-Message: Failed to load module "topmenu-gtk-module"
>
> followed by many
>
> (emacs-25-3:7212): Gtk-WARNING **: Theme parsing error:*
>
> messages, and then
>
> GLib-GIO-Message: Using the 'memory' GSettings backend.  Your settings
> will not be saved or shared with other applications.
> Fatal error 6: Aborted
> Backtrace:
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x81393ec]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8121e63]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x813947c]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e75]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176cce]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176c9e]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176cce]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x817705f]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176c9e]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176c9e]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176c9e]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176c9e]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176c9e]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176c9e]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176c9e]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176cce]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x817705f]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176cce]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x817705f]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x81770fd]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x817841e]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e7f]
> /gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
> 25.3[0x8176e5d]
> ...
> Aborted (core dumped)
>
>
> Does anyone know what to make of this?
>
> Thanks,
>
> Mason

-- 
- https://libreplanet.org/wiki/User:Adfeno
- Palestrante e consultor sobre /software/ livre (não confundir com
  gratis).
- "WhatsApp"? Ele não é livre. Por favor, veja formas de se comunicar
  instantaneamente comigo no endereço abaixo.
- Contato: https://libreplanet.org/wiki/User:Adfeno#vCard
- Arquivos comuns aceitos (apenas sem DRM): Corel Draw, Microsoft
  Office, MP3, MP4, WMA, WMV.
- Arquivos comuns aceitos e enviados: CSV, GNU Dia, GNU Emacs Org, GNU
  GIMP, Inkscape SVG, JPG, LibreOffice (padrão ODF), OGG, OPUS, PDF
  (apenas sem DRM), PNG, TXT, WEBM.



error running emacs installed with guix

2017-11-12 Thread Mason Hock
I have installed emacs with Guix. When I try to run it I get

Gtk-Message: Failed to load module "canberra-gtk-module"
Gtk-Message: Failed to load module "topmenu-gtk-module"

followed by many

(emacs-25-3:7212): Gtk-WARNING **: Theme parsing error:*

messages, and then

GLib-GIO-Message: Using the 'memory' GSettings backend.  Your settings
will not be saved or shared with other applications.
Fatal error 6: Aborted
Backtrace:
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x81393ec]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8121e63]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x813947c]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e75]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176cce]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176c9e]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176cce]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x817705f]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176c9e]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176c9e]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176c9e]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176c9e]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176c9e]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176c9e]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176c9e]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176cce]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x817705f]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176cce]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x817705f]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x81770fd]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x817841e]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e7f]
/gnu/store/5jfh7wlrkc0lhrfdaijsjgz8w9bwqxvf-emacs-25.3/bin/emacs-
25.3[0x8176e5d]
...
Aborted (core dumped)


Does anyone know what to make of this?

Thanks,

Mason