unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#46589: 28.0.50; Void variable regression in interactive spec
@ 2021-02-17 15:20 Basil L. Contovounesios
  2021-02-17 16:03 ` Lars Ingebrigtsen
  2021-02-17 16:13 ` Lars Ingebrigtsen
  0 siblings, 2 replies; 4+ messages in thread
From: Basil L. Contovounesios @ 2021-02-17 15:20 UTC (permalink / raw)
  To: 46589

0. emacs -Q
1. M-x toggle-debug-on-error RET
2. M-x add-file-local-variable-prop-line RET

Debugger entered--Lisp error: (void-variable variable)
  (list variable (read-file-local-variable-value variable) t)
  call-interactively(add-file-local-variable-prop-line record nil)
  command-execute(add-file-local-variable-prop-line record)
  execute-extended-command(nil "add-file-local-variable-prop-line" "add-file-local-variable-")
  funcall-interactively(execute-extended-command nil "add-file-local-variable-prop-line" "add-file-local-variable-")
  call-interactively(execute-extended-command nil nil)
  command-execute(execute-extended-command)

This started with the following commit according to 'git bisect':

Extend the syntax of `interactive' to list applicable modes
58e0c8ee86 2021-02-14 13:21:24 +0100
https://git.savannah.gnu.org/cgit/emacs.git/commit/?id=58e0c8ee86e2c36245f1c5a1483f1c73600b4914

-- 
Basil

In GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, X toolkit, cairo version 1.16.0, Xaw3d scroll bars)
 of 2021-02-17 built on tia
Repository revision: cccd701ac952f81da8444576a72d92b37ddf42d2
Repository branch: master
Windowing system distributor 'The X.Org Foundation', version 11.0.12010000
System Description: Debian GNU/Linux bullseye/sid

Configured using:
 'configure 'CC=ccache gcc' 'CFLAGS=-O2 -march=native' --config-cache
 --prefix=/home/blc/.local --enable-checking=structs
 --with-x-toolkit=lucid --with-file-notification=yes --with-x'

Configured features:
ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ JPEG
JSON LCMS2 LIBOTF LIBSELINUX LIBSYSTEMD LIBXML2 M17N_FLT MODULES NOTIFY
INOTIFY PDUMPER PNG RSVG SOUND THREADS TIFF TOOLKIT_SCROLL_BARS X11
XAW3D XDBE XIM XPM LUCID ZLIB

Important settings:
  value of $LANG: en_IE.UTF-8
  value of $XMODIFIERS: @im=ibus
  locale-coding-system: utf-8-unix





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

* bug#46589: 28.0.50; Void variable regression in interactive spec
  2021-02-17 15:20 bug#46589: 28.0.50; Void variable regression in interactive spec Basil L. Contovounesios
@ 2021-02-17 16:03 ` Lars Ingebrigtsen
  2021-02-17 16:13 ` Lars Ingebrigtsen
  1 sibling, 0 replies; 4+ messages in thread
From: Lars Ingebrigtsen @ 2021-02-17 16:03 UTC (permalink / raw)
  To: Basil L. Contovounesios; +Cc: 46589

"Basil L. Contovounesios" <contovob@tcd.ie> writes:

> 0. emacs -Q
> 1. M-x toggle-debug-on-error RET
> 2. M-x add-file-local-variable-prop-line RET
>
> Debugger entered--Lisp error: (void-variable variable)
>   (list variable (read-file-local-variable-value variable) t)

I've found the problem (it affects non-lexical files); pushing as soon
as I've done some more tests.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





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

* bug#46589: 28.0.50; Void variable regression in interactive spec
  2021-02-17 15:20 bug#46589: 28.0.50; Void variable regression in interactive spec Basil L. Contovounesios
  2021-02-17 16:03 ` Lars Ingebrigtsen
@ 2021-02-17 16:13 ` Lars Ingebrigtsen
  2021-02-18  0:24   ` Basil L. Contovounesios
  1 sibling, 1 reply; 4+ messages in thread
From: Lars Ingebrigtsen @ 2021-02-17 16:13 UTC (permalink / raw)
  To: Basil L. Contovounesios; +Cc: 46589

"Basil L. Contovounesios" <contovob@tcd.ie> writes:

> 0. emacs -Q
> 1. M-x toggle-debug-on-error RET
> 2. M-x add-file-local-variable-prop-line RET
>
> Debugger entered--Lisp error: (void-variable variable)
>   (list variable (read-file-local-variable-value variable) t)
>   call-interactively(add-file-local-variable-prop-line record

Sorry about that; this should now be fixed on the trunk -- but you have
to delete the .elc files (i.e., a "make bootstrap" or the like).

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





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

* bug#46589: 28.0.50; Void variable regression in interactive spec
  2021-02-17 16:13 ` Lars Ingebrigtsen
@ 2021-02-18  0:24   ` Basil L. Contovounesios
  0 siblings, 0 replies; 4+ messages in thread
From: Basil L. Contovounesios @ 2021-02-18  0:24 UTC (permalink / raw)
  To: Lars Ingebrigtsen; +Cc: 46589-done

tags 46589 fixed
close 46589 28.1
quit

Lars Ingebrigtsen <larsi@gnus.org> writes:

> "Basil L. Contovounesios" <contovob@tcd.ie> writes:
>
>> 0. emacs -Q
>> 1. M-x toggle-debug-on-error RET
>> 2. M-x add-file-local-variable-prop-line RET
>>
>> Debugger entered--Lisp error: (void-variable variable)
>>   (list variable (read-file-local-variable-value variable) t)
>>   call-interactively(add-file-local-variable-prop-line record
>
> Sorry about that; this should now be fixed on the trunk -- but you have
> to delete the .elc files (i.e., a "make bootstrap" or the like).

No worries, and thanks for the quick fix.  Closing.

-- 
Basil





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

end of thread, other threads:[~2021-02-18  0:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-17 15:20 bug#46589: 28.0.50; Void variable regression in interactive spec Basil L. Contovounesios
2021-02-17 16:03 ` Lars Ingebrigtsen
2021-02-17 16:13 ` Lars Ingebrigtsen
2021-02-18  0:24   ` Basil L. Contovounesios

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