unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#38750: Segmentfault on Emacs 26.3
@ 2019-12-26 12:14 c4droid
  0 siblings, 0 replies; 4+ messages in thread
From: c4droid @ 2019-12-26 12:14 UTC (permalink / raw)
  To: 38750; +Cc: hekinami

* Phenomenon
GNU Emacs crashed with a segmentation fault by initializing with a font
change setting.
* Environment
  1. Linux Mint 19.2
  2. GNU Emacs 26.3 (Compiled from source)
* How to reproduce
  1. Use the specified .emacs.d (Latest commint 248995b)
     $ git clone --depth 1 https://github.com/hekinami/dotemacs ~/.emacs.d
  2. Run emacs to initialize .emacs.d
     $ emacs # Be waiting for the completation of packages installing patiently
  3. Create a file (Just because of a miss of the configuration)
     $ mkdir -p ~/.emacs.d/contents/organizer/fin
     $ touch ~/.emacs.d/contents/organizer/fin/fin.ledger
  4. Revise .emacs.d/settings.org
     From:
     #+BEGIN_SRC emacs-lisp
     (use-package all-the-icons
       :ensure t) ;; M-x all-the-icons-install-fonts
     #+END_SRC
     To:
     #+BEGIN_SRC emacs-lisp
     (use-package all-the-icons
       :ensure t
       :config
       (set-fontset-font t 'unicode (font-spec :family "all-the-icons") nil 'append)
	   (set-fontset-font t 'unicode (font-spec :family "file-icons") nil 'append)
	   (set-fontset-font t 'unicode (font-spec :family "Material Icons") nil 'append)
	   (set-fontset-font t 'unicode (font-spec :family "github-octicons") nil 'append)
	   (set-fontset-font t 'unicode (font-spec :family "FontAwesome") nil 'append)
	   (set-fontset-font t 'unicode (font-spec :family "Weather Icons") nil 'append)) ;; M-x all-the-icons-install-fonts
     #+END_SRC
  5. Run emacs again, then the error occurs.
* Backtrace
emacs[0x512f9e]
emacs[0x4f8b6a]
emacs[0x51146e]
emacs[0x511688]
emacs[0x51170c]
/lib/x86_64-linux-gnu/libpthread.so.0(+0x12890)[0x7f54d6c7f890]
emacs[0x5dd9ab]
emacs[0x5de2d1]
emacs[0x5de64c]
emacs[0x448eb8]
emacs[0x44c471]
emacs[0x44d044]
emacs[0x44d28e]
emacs[0x44e421]
emacs[0x44e421]
emacs[0x44d28e]
emacs[0x44e421]
emacs[0x44f59a]
emacs[0x44f7d3]
emacs[0x467882]
emacs[0x46ba8b]
emacs[0x56e426]
emacs[0x435755]
emacs[0x458d2d]
emacs[0x45a0d8]
emacs[0x45a20f]
emacs[0x45a37c]
emacs[0x5651de]
emacs[0x56f1e0]
emacs[0x5a60d0]
emacs[0x56f15b]
emacs[0x5a60d0]
emacs[0x56f15b]
emacs[0x5a60d0]
emacs[0x56f15b]
emacs[0x5a60d0]
emacs[0x571d63]
emacs[0x57129a]
emacs[0x57326b]
emacs[0x56e38e]
emacs[0x4f9d60]
...
Segmentation fault (core dumped)
* Note
This bug is founded by hekinami <zoubibo@amiunique.net>, He don't know
how to create the bug report to mailing list. I help him sended this bug
report, if have any questions, please email him at:
zoubibo@amiunique.net.

Best reguards,
c4droid







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

* bug#38750: Segmentfault on Emacs 26.3
       [not found] <m2a77fi8ru.fsf@foxmail.com>
@ 2019-12-26 17:25 ` Eli Zaretskii
  2019-12-29 21:05   ` Robert Pluim
  0 siblings, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2019-12-26 17:25 UTC (permalink / raw)
  To: c4droid; +Cc: 38750, zoubibo

> From: c4droid <c4droid@foxmail.com>
> Date: Thu, 26 Dec 2019 20:14:13 +0800
> Cc: hekinami <zoubibo@amiunique.net>
> 
> * Phenomenon
> GNU Emacs crashed with a segmentation fault by initializing with a font
> change setting.
> * Environment
>   1. Linux Mint 19.2
>   2. GNU Emacs 26.3 (Compiled from source)
> * How to reproduce
>   1. Use the specified .emacs.d (Latest commint 248995b)
>      $ git clone --depth 1 https://github.com/hekinami/dotemacs ~/.emacs.d
>   2. Run emacs to initialize .emacs.d
>      $ emacs # Be waiting for the completation of packages installing patiently
>   3. Create a file (Just because of a miss of the configuration)
>      $ mkdir -p ~/.emacs.d/contents/organizer/fin
>      $ touch ~/.emacs.d/contents/organizer/fin/fin.ledger
>   4. Revise .emacs.d/settings.org
>      From:
>      #+BEGIN_SRC emacs-lisp
>      (use-package all-the-icons
>        :ensure t) ;; M-x all-the-icons-install-fonts
>      #+END_SRC
>      To:
>      #+BEGIN_SRC emacs-lisp
>      (use-package all-the-icons
>        :ensure t
>        :config
>        (set-fontset-font t 'unicode (font-spec :family "all-the-icons") nil 'append)
> 	   (set-fontset-font t 'unicode (font-spec :family "file-icons") nil 'append)
> 	   (set-fontset-font t 'unicode (font-spec :family "Material Icons") nil 'append)
> 	   (set-fontset-font t 'unicode (font-spec :family "github-octicons") nil 'append)
> 	   (set-fontset-font t 'unicode (font-spec :family "FontAwesome") nil 'append)
> 	   (set-fontset-font t 'unicode (font-spec :family "Weather Icons") nil 'append)) ;; M-x all-the-icons-install-fonts
>      #+END_SRC

Another manifestation of bug#38569?





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

* bug#38750: Segmentfault on Emacs 26.3
  2019-12-26 17:25 ` bug#38750: Segmentfault on Emacs 26.3 Eli Zaretskii
@ 2019-12-29 21:05   ` Robert Pluim
  2020-04-27 21:46     ` Stefan Kangas
  0 siblings, 1 reply; 4+ messages in thread
From: Robert Pluim @ 2019-12-29 21:05 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 38750, zoubibo, c4droid

>>>>> On Thu, 26 Dec 2019 19:25:44 +0200, Eli Zaretskii <eliz@gnu.org> said:

    >> From: c4droid <c4droid@foxmail.com>
    >> Date: Thu, 26 Dec 2019 20:14:13 +0800
    >> Cc: hekinami <zoubibo@amiunique.net>
    >> 
    >> * Phenomenon
    >> GNU Emacs crashed with a segmentation fault by initializing with a font
    >> change setting.
    >> * Environment
    >> 1. Linux Mint 19.2
    >> 2. GNU Emacs 26.3 (Compiled from source)
    >> * How to reproduce
    >> 1. Use the specified .emacs.d (Latest commint 248995b)
    >> $ git clone --depth 1 https://github.com/hekinami/dotemacs ~/.emacs.d
    >> 2. Run emacs to initialize .emacs.d
    >> $ emacs # Be waiting for the completation of packages installing patiently
    >> 3. Create a file (Just because of a miss of the configuration)
    >> $ mkdir -p ~/.emacs.d/contents/organizer/fin
    >> $ touch ~/.emacs.d/contents/organizer/fin/fin.ledger
    >> 4. Revise .emacs.d/settings.org
    >> From:
    >> #+BEGIN_SRC emacs-lisp
    >> (use-package all-the-icons
    >> :ensure t) ;; M-x all-the-icons-install-fonts
    >> #+END_SRC
    >> To:
    >> #+BEGIN_SRC emacs-lisp
    >> (use-package all-the-icons
    >> :ensure t
    >> :config
    >> (set-fontset-font t 'unicode (font-spec :family "all-the-icons") nil 'append)
    >> (set-fontset-font t 'unicode (font-spec :family "file-icons") nil 'append)
    >> (set-fontset-font t 'unicode (font-spec :family "Material Icons") nil 'append)
    >> (set-fontset-font t 'unicode (font-spec :family "github-octicons") nil 'append)
    >> (set-fontset-font t 'unicode (font-spec :family "FontAwesome") nil 'append)
    >> (set-fontset-font t 'unicode (font-spec :family "Weather Icons") nil 'append)) ;; M-x all-the-icons-install-fonts
    >> #+END_SRC

    Eli> Another manifestation of bug#38569?

Could be. Could you try the latest emacs-27, Iʼve just pushed a change
for 38569 there?

Thanks

Robert





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

* bug#38750: Segmentfault on Emacs 26.3
  2019-12-29 21:05   ` Robert Pluim
@ 2020-04-27 21:46     ` Stefan Kangas
  0 siblings, 0 replies; 4+ messages in thread
From: Stefan Kangas @ 2020-04-27 21:46 UTC (permalink / raw)
  To: Robert Pluim; +Cc: zoubibo, 38750-done, c4droid

Robert Pluim <rpluim@gmail.com> writes:

>     Eli> Another manifestation of bug#38569?
>
> Could be. Could you try the latest emacs-27, Iʼve just pushed a change
> for 38569 there?

More information was requested, but none was given within 17 weeks, so
I'm closing this bug.

If this is still an issue, please reply to this email (use "Reply to
all" in your email client) and we can reopen the bug report.

Best regards,
Stefan Kangas





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

end of thread, other threads:[~2020-04-27 21:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <m2a77fi8ru.fsf@foxmail.com>
2019-12-26 17:25 ` bug#38750: Segmentfault on Emacs 26.3 Eli Zaretskii
2019-12-29 21:05   ` Robert Pluim
2020-04-27 21:46     ` Stefan Kangas
2019-12-26 12:14 c4droid

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).