unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#34722: 26.1; REGRESSION: `indent-pp-sexp' Wrong type argument: consp, nil
@ 2019-03-03 17:29 Drew Adams
  2019-03-03 17:45 ` Eli Zaretskii
  0 siblings, 1 reply; 8+ messages in thread
From: Drew Adams @ 2019-03-03 17:29 UTC (permalink / raw)
  To: 34722

1. emacs -Q

2. C-x C-f foo.el

3. Enter this text. Be sure to hit RET after the final right paren, so there is a newline char at the end.

(defun foo ()
  (unless t 42)))


4. Put point just before the first left paren, then use `C-M-q'.

This error is raised:

Wrong type argument: consp, nil

If you turn on `debug-on-error' this is what you get:

Debugger entered--Lisp error: (wrong-type-argument consp nil)
  lisp-indent-calc-next(#s(lisp-indent-state :stack (2 nil) :ppss (1 1 12 nil nil nil 0 nil nil (1) nil) :ppss-point 14))
  indent-sexp()
  indent-pp-sexp(nil)
  funcall-interactively(indent-pp-sexp nil)
  call-interactively(indent-pp-sexp nil nil)
  command-execute(indent-pp-sexp)

I see the same regression in Emacs 27, this build (the latest I have):

In GNU Emacs 27.0.50 (build 3, x86_64-w64-mingw32)
 of 2018-03-21 built on CIRROCUMULUS
Repository revision: e70d0c9e66d7a8609450b2889869d16aeb0363b5
Windowing system distributor 'Microsoft Corp.', version 10.0.17134
Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
throw-clone-fr-2.el has auto save data; consider M-x recover-this-file
indent-sexp: Wrong type argument: consp, nil
indent-sexp: Wrong type argument: consp, nil
Configured using:
 'configure --without-dbus --host=x86_64-w64-mingw32
 --without-compress-install -C 'CFLAGS=-O2 -static -g3''

I do not see this bug in Emacs 25.3.1.

In GNU Emacs 26.1 (build 1, x86_64-w64-mingw32)
 of 2018-05-30 built on CIRROCUMULUS
Repository revision: 07f8f9bc5a51f5aa94eb099f3e15fbe0c20ea1ea
Windowing system distributor 'Microsoft Corp.', version 10.0.17134
Recent messages:
For information about GNU Emacs and the GNU system, type C-h C-a.
indent-sexp: Wrong type argument: consp, nil
Configured using:
 'configure --without-dbus --host=x86_64-w64-mingw32
 --without-compress-install 'CFLAGS=-O2 -static -g3''

Configured features:
XPM JPEG TIFF GIF PNG RSVG SOUND NOTIFY ACL GNUTLS LIBXML2 ZLIB
TOOLKIT_SCROLL_BARS THREADS LCMS2

Important settings:
  value of $LANG: ENU
  locale-coding-system: cp1252

Major mode: Emacs-Lisp

Minor modes in effect:
  tooltip-mode: t
  global-eldoc-mode: t
  eldoc-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  tool-bar-mode: t
  menu-bar-mode: t
  file-name-shadow-mode: t
  global-font-lock-mode: t
  font-lock-mode: t
  blink-cursor-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t
  line-number-mode: t
  transient-mark-mode: t

Load-path shadows:
None found.

Features:
(shadow sort mail-extr emacsbug message rmc puny seq byte-opt gv
bytecomp byte-compile cconv cl-loaddefs cl-lib format-spec rfc822 mml
easymenu mml-sec password-cache epa derived epg epg-config gnus-util
rmail rmail-loaddefs mm-decode mm-bodies mm-encode mail-parse rfc2231
mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums
mm-util mail-prsvr mail-utils dired dired-loaddefs elec-pair time-date
mule-util tooltip eldoc electric uniquify ediff-hook vc-hooks
lisp-float-type mwheel dos-w32 ls-lisp disp-table term/w32-win w32-win
w32-vars term/common-win tool-bar dnd fontset image regexp-opt fringe
tabulated-list replace newcomment text-mode elisp-mode lisp-mode
prog-mode register page menu-bar rfn-eshadow isearch timer select
scroll-bar mouse jit-lock font-lock syntax facemenu font-core
term/tty-colors frame cl-generic cham georgian utf-8-lang misc-lang
vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932
hebrew greek romanian slovak czech european ethiopic indian cyrillic
chinese composite charscript charprop case-table epa-hook jka-cmpr-hook
help simple abbrev obarray minibuffer cl-preloaded nadvice loaddefs
button faces cus-face macroexp files text-properties overlay sha1 md5
base64 format env code-pages mule custom widget hashtable-print-readable
backquote w32notify w32 lcms2 multi-tty make-network-process emacs)

Memory information:
((conses 16 98254 9195)
 (symbols 56 20427 1)
 (miscs 48 59 191)
 (strings 32 29927 1011)
 (string-bytes 1 764152)
 (vectors 16 13997)
 (vector-slots 8 487459 12958)
 (floats 8 55 315)
 (intervals 56 248 29)
 (buffers 992 14))





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

* bug#34722: 26.1; REGRESSION: `indent-pp-sexp' Wrong type argument: consp, nil
  2019-03-03 17:29 Drew Adams
@ 2019-03-03 17:45 ` Eli Zaretskii
  0 siblings, 0 replies; 8+ messages in thread
From: Eli Zaretskii @ 2019-03-03 17:45 UTC (permalink / raw)
  To: Drew Adams; +Cc: 34722

> Date: Sun, 3 Mar 2019 09:29:32 -0800 (PST)
> From: Drew Adams <drew.adams@oracle.com>
> 
> 1. emacs -Q
> 
> 2. C-x C-f foo.el
> 
> 3. Enter this text. Be sure to hit RET after the final right paren, so there is a newline char at the end.
> 
> (defun foo ()
>   (unless t 42)))
> 
> 
> 4. Put point just before the first left paren, then use `C-M-q'.
> 
> This error is raised:
> 
> Wrong type argument: consp, nil

FWIW, I cannot reproduce this with today's Emacs 27.  Your Emacs 27
build is almost a year old, maybe we had a bug back then.





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

* bug#34722: 26.1; REGRESSION: `indent-pp-sexp' Wrong type argument: consp, nil
       [not found] ` <<834l8jg8d4.fsf@gnu.org>
@ 2019-03-03 18:18   ` Drew Adams
  2019-03-03 18:31     ` Eli Zaretskii
  0 siblings, 1 reply; 8+ messages in thread
From: Drew Adams @ 2019-03-03 18:18 UTC (permalink / raw)
  To: Eli Zaretskii, Drew Adams; +Cc: 34722

> > 1. emacs -Q
> >
> > 2. C-x C-f foo.el
> >
> > 3. Enter this text. Be sure to hit RET after the final right paren,
> so there is a newline char at the end.
> >
> > (defun foo ()
> >   (unless t 42)))
> >
> >
> > 4. Put point just before the first left paren, then use `C-M-q'.
> >
> > This error is raised:
> >
> > Wrong type argument: consp, nil
> 
> FWIW, I cannot reproduce this with today's Emacs 27.  Your Emacs 27
> build is almost a year old, maybe we had a bug back then.

Good, if it's fixed.

Can you at least repro it in Emacs 26?  That will tell
you whether the instructions are clear enough and you
followed them OK.





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

* bug#34722: 26.1; REGRESSION: `indent-pp-sexp' Wrong type argument: consp, nil
  2019-03-03 18:18   ` bug#34722: 26.1; REGRESSION: `indent-pp-sexp' Wrong type argument: consp, nil Drew Adams
@ 2019-03-03 18:31     ` Eli Zaretskii
  0 siblings, 0 replies; 8+ messages in thread
From: Eli Zaretskii @ 2019-03-03 18:31 UTC (permalink / raw)
  To: Drew Adams; +Cc: 34722

> Date: Sun, 3 Mar 2019 10:18:09 -0800 (PST)
> From: Drew Adams <drew.adams@oracle.com>
> Cc: 34722@debbugs.gnu.org
> 
> Can you at least repro it in Emacs 26?

No, I cannot.





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

* bug#34722: 26.1; REGRESSION: `indent-pp-sexp' Wrong type argument: consp, nil
       [not found]     ` <<8336o3g67m.fsf@gnu.org>
@ 2019-03-03 18:57       ` Drew Adams
  2019-03-03 19:28         ` Eli Zaretskii
  2019-03-03 19:34         ` Michael Heerdegen
  0 siblings, 2 replies; 8+ messages in thread
From: Drew Adams @ 2019-03-03 18:57 UTC (permalink / raw)
  To: Eli Zaretskii, Drew Adams; +Cc: 34722

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

> > Can you at least repro it in Emacs 26?
> No, I cannot.

I see.  I can. ;-)

Perhaps you did not type the extra right
paren at the end?  Or perhaps you did not
enter a newline after that?

Could you please try emacs -Q, then C-x C-f
for the attached file?

With the Emacs 26.1 release build I cited
this should be 100% reproducible.  It is
for me.

(I narrowed this down from the code where I
discovered this.  Perhaps it can be narrowed
even further, but this 33-char file suffices.)

[-- Attachment #2: throw-bug-34722.el --]
[-- Type: application/octet-stream, Size: 32 bytes --]

(defun foo ()
  (unless t 42)))

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

* bug#34722: 26.1; REGRESSION: `indent-pp-sexp' Wrong type argument: consp, nil
  2019-03-03 18:57       ` Drew Adams
@ 2019-03-03 19:28         ` Eli Zaretskii
  2019-03-03 19:34         ` Michael Heerdegen
  1 sibling, 0 replies; 8+ messages in thread
From: Eli Zaretskii @ 2019-03-03 19:28 UTC (permalink / raw)
  To: Drew Adams; +Cc: 34722

> Date: Sun, 3 Mar 2019 10:57:30 -0800 (PST)
> From: Drew Adams <drew.adams@oracle.com>
> Cc: 34722@debbugs.gnu.org
> 
> > > Can you at least repro it in Emacs 26?
> > No, I cannot.
> 
> I see.  I can. ;-)
> 
> Perhaps you did not type the extra right
> paren at the end?

I did.

> Or perhaps you did not enter a newline after that?

I did.

> Could you please try emacs -Q, then C-x C-f
> for the attached file?

Same result with Emacs 26.

> With the Emacs 26.1 release build I cited
> this should be 100% reproducible.  It is
> for me.

With stock Emacs 26.1, I see this, yes.  But not with what will be
Emacs 26.2.  (You said "Emacs 26" earlier, so I tried the latest
pretest.)





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

* bug#34722: 26.1; REGRESSION: `indent-pp-sexp' Wrong type argument: consp, nil
  2019-03-03 18:57       ` Drew Adams
  2019-03-03 19:28         ` Eli Zaretskii
@ 2019-03-03 19:34         ` Michael Heerdegen
  1 sibling, 0 replies; 8+ messages in thread
From: Michael Heerdegen @ 2019-03-03 19:34 UTC (permalink / raw)
  To: Drew Adams; +Cc: 34722

Drew Adams <drew.adams@oracle.com> writes:

> With the Emacs 26.1 release build I cited this should be 100%
> reproducible.  It is for me.

Yes, I can reproduce in 26.1.  I cannot with master.  Looks much like
Bug#30891 which has been fixed in October 2018.

Michael.





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

* bug#34722: 26.1; REGRESSION: `indent-pp-sexp' Wrong type argument: consp, nil
       [not found]         ` <<831s3ng3kw.fsf@gnu.org>
@ 2019-03-03 23:22           ` Drew Adams
  0 siblings, 0 replies; 8+ messages in thread
From: Drew Adams @ 2019-03-03 23:22 UTC (permalink / raw)
  To: Eli Zaretskii, Drew Adams; +Cc: 34722

> > Could you please try emacs -Q, then C-x C-f
> > for the attached file?
> 
> Same result with Emacs 26.
> 
> > With the Emacs 26.1 release build I cited
> > this should be 100% reproducible.  It is
> > for me.
> 
> With stock Emacs 26.1, I see this, yes.  But not with what will be
> Emacs 26.2.  (You said "Emacs 26" earlier, so I tried the latest
> pretest.)

OK, that's good news (both that you can repro
it with Emacs 26.1 and that it's fixed in 26.2)

My report was from Emacs 26.1 - it indicates the
release build etc.





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

end of thread, other threads:[~2019-03-03 23:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <<24c15af4-00fd-4ca0-93c9-bf8b60045b13@default>
     [not found] ` <<834l8jg8d4.fsf@gnu.org>
2019-03-03 18:18   ` bug#34722: 26.1; REGRESSION: `indent-pp-sexp' Wrong type argument: consp, nil Drew Adams
2019-03-03 18:31     ` Eli Zaretskii
     [not found] <<<<24c15af4-00fd-4ca0-93c9-bf8b60045b13@default>
     [not found] ` <<<<834l8jg8d4.fsf@gnu.org>
     [not found]   ` <<<ee798ab8-570b-4cb2-a859-5fe6d2d81374@default>
     [not found]     ` <<<8336o3g67m.fsf@gnu.org>
     [not found]       ` <<cc45f4de-393b-405b-ba3d-db6e0437e29f@default>
     [not found]         ` <<831s3ng3kw.fsf@gnu.org>
2019-03-03 23:22           ` Drew Adams
     [not found] <<<24c15af4-00fd-4ca0-93c9-bf8b60045b13@default>
     [not found] ` <<<834l8jg8d4.fsf@gnu.org>
     [not found]   ` <<ee798ab8-570b-4cb2-a859-5fe6d2d81374@default>
     [not found]     ` <<8336o3g67m.fsf@gnu.org>
2019-03-03 18:57       ` Drew Adams
2019-03-03 19:28         ` Eli Zaretskii
2019-03-03 19:34         ` Michael Heerdegen
2019-03-03 17:29 Drew Adams
2019-03-03 17:45 ` 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).