[Bug 508618] Re: Setting max-specpdl-size of 34295 allows segfaults with 'simple' elisp

2023-06-14 Thread themusicgod1
** Changed in: emacs25 (Ubuntu) Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to emacs25 in Ubuntu. https://bugs.launchpad.net/bugs/508618 Title: Setting max-specpdl-size of 34295 allows

[Bug 508618] Re: Setting max-specpdl-size of 34295 allows segfaults with 'simple' elisp

2019-02-18 Thread themusicgod1
emacs26 in disco gives the error "Re-entering top level after C stack overflow" which seems like an appropriate error. ** Changed in: emacs25 (Ubuntu) Status: New =>

[Bug 508618] Re: Setting max-specpdl-size of 34295 allows segfaults with 'simple' elisp

2018-06-10 Thread themusicgod1
** Tags added: cosmic -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to emacs25 in Ubuntu. https://bugs.launchpad.net/bugs/508618 Title: Setting max-specpdl-size of 34295 allows segfaults with 'simple' elisp To manage notifications

[Bug 508618] Re: Setting max-specpdl-size of 34295 allows segfaults with 'simple' elisp

2017-11-27 Thread Bug Watch Updater
** Changed in: emacs25 (Debian) Status: Unknown => New -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to emacs25 in Ubuntu. https://bugs.launchpad.net/bugs/508618 Title: Setting max-specpdl-size of 34295 allows segfaults with

[Bug 508618] Re: Setting max-specpdl-size of 34295 allows segfaults with 'simple' elisp

2017-11-27 Thread themusicgod1
** Bug watch added: Debian Bug tracker #882957 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=882957 ** Also affects: emacs25 (Debian) via https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=882957 Importance: Unknown Status: Unknown -- You received this bug notification

[Bug 508618] Re: Setting max-specpdl-size of 34295 allows segfaults with 'simple' elisp

2017-11-27 Thread era
Do you mean this is a new way to repro? Which replaces the old? (For all versions, or just the latest one you tried?) If we are to finally report this upstream, can you provide a brief use case to assess the priority of this? If it's just an academic curiosity, I don't really see the point; but

[Bug 508618] Re: Setting max-specpdl-size of 34295 allows segfaults with 'simple' elisp

2017-11-21 Thread themusicgod1
Looks like my example code needed 'map' (defun map (f l) "map function?" (if (nullp l) '() (if (listp l) (if (= 1 (length l)) (list (funcall f (car l))) (if (> (length l) 1) (cons (map f (car l))

[Bug 508618] Re: Setting max-specpdl-size of 34295 allows segfaults with 'simple' elisp

2017-06-13 Thread themusicgod1
** Tags added: artful -- You received this bug notification because you are a member of Ubuntu Desktop Bugs, which is subscribed to emacs25 in Ubuntu. https://bugs.launchpad.net/bugs/508618 Title: Setting max-specpdl-size of 34295 allows segfaults with 'simple' elisp To manage notifications

[Bug 508618] Re: Setting max-specpdl-size of 34295 allows segfaults with 'simple' elisp

2017-06-13 Thread themusicgod1
reproduced same kind of issue in emacs 25 using slightly more complicated lisp code, plenty of ram left: first file seqfile1: (setq undo-outer-limit (expt 2 23)) (setq max-lisp-eval-depth (expt 2 17)) (setq max-specpdl-size (expt 2 17)) (setq message-log-max 4) (setq