GNU bug report logs - #78157
31.0.50; 3.2 Install a Function Definition

Please note: This is a static page, with minimal formatting, updated once a day.
Click here to see this page with the latest information and nicer formatting.

Package: emacs; Reported by: badli al rashid <theothernighttheotherday@HIDDEN>; merged with #78156; dated Wed, 30 Apr 2025 06:15:02 UTC; Maintainer for emacs is bug-gnu-emacs@HIDDEN.
Merged 78156 78157. Request was from Eli Zaretskii <eliz@HIDDEN> to control <at> debbugs.gnu.org. Full text available.

Message received at 78157 <at> debbugs.gnu.org:


Received: (at 78157) by debbugs.gnu.org; 30 Apr 2025 06:38:06 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Wed Apr 30 02:38:06 2025
Received: from localhost ([127.0.0.1]:38867 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1uA154-0000AK-4m
	for submit <at> debbugs.gnu.org; Wed, 30 Apr 2025 02:38:06 -0400
Received: from eggs.gnu.org ([2001:470:142:3::10]:41370)
 by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.84_2) (envelope-from <eliz@HIDDEN>)
 id 1uA151-00009j-DM; Wed, 30 Apr 2025 02:38:04 -0400
Received: from fencepost.gnu.org ([2001:470:142:3::e])
 by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.90_1) (envelope-from <eliz@HIDDEN>)
 id 1uA14t-0006Wf-Nj; Wed, 30 Apr 2025 02:37:57 -0400
DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org;
 s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date:
 mime-version; bh=GplPf74fg3QK4nSSyMhs3zm4AAZOiKLV/K8Sri6UeQs=; b=cYSOOTVMfyPg
 rtpCU8szx23ulHTiYu3FhZu83y37L/5kwCyaRV5q1+sCrX9LIPUYEZw4f9IMSnzUg1m56jK1OVQb0
 yS5SjFYMUnsXL8QkXIG7lNUauHKQSln8uy9gQlBEmG9eMdbF3hMvLY6dYWFquUZ38tqtfOtQg+qRM
 n4RBeWqiEkPfz3dojzubhkf7LeEan1diJep/ZTpAvOJ/sfoOCLZGhJEvTDOvB7kqbfppwdhEKp4Ii
 mRpZo6yzK6REZw4YjL2PXKLflfZvtI7cqepYaZE/xB+zsDL5ZNcdlI1QHTfm0wc3CV04Aw+pNHC7I
 MRYY5n81RWHWAD5f/jieOA==;
Date: Wed, 30 Apr 2025 09:37:45 +0300
Message-Id: <86v7qmnohy.fsf@HIDDEN>
From: Eli Zaretskii <eliz@HIDDEN>
To: badli al rashid <theothernighttheotherday@HIDDEN>
In-Reply-To: <CAJinB_Do3Gdc-F_pk6EkY=S6hqH-w_S0LtDgf+eKsz0AZWCe8w@HIDDEN>
 (message from badli al rashid on Wed, 30 Apr 2025 14:13:54 +0800)
Subject: Re: bug#78157: 31.0.50; 3.2 Install a Function Definition
References: <CAJinB_Do3Gdc-F_pk6EkY=S6hqH-w_S0LtDgf+eKsz0AZWCe8w@HIDDEN>
X-Spam-Score: -2.3 (--)
X-Debbugs-Envelope-To: 78157
Cc: 78157 <at> debbugs.gnu.org
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -3.3 (---)

merge 78157 78156
thanks

> From: badli al rashid <theothernighttheotherday@HIDDEN>
> Date: Wed, 30 Apr 2025 14:13:54 +0800
> 
> error when installing the second version of the function from elisp
> introduction to programming
> 
>      (defun multiply-by-seven (number)       ; Second version.
>        "Multiply NUMBER by seven."
>        (+ number number number number number number number))

I'm quite sure this is the same problem as in the previous bug#78156
which you reported.

Moreover, given this:

> Debugger entered--Lisp error: (void-variable number)
>   (* 7 number)
>   (progn (* 7 number))
>   eval((progn (* 7 number)) t)

it looks like you didn't even install the new definition of the
multiply-by-seven function, because Emacs is still using the old
definition.

These are all user mistakes typical for a newcomer to Emacs Lisp.

There's nothing wrong with reporting these issues and asking for help
and advice, but this list is not the proper forum for that.  Given
your level of knowledge of Emacs Lisp, may I suggest that you instead
post to the help-gnu-emacs@HIDDEN mailing list, whose purpose is
explicitly to help newcomers to Emacs?  If the discussion on that list
indicates that there's a real bug in Emacs or its documentation,
please submit a bug report with all the details using report-emacs-bug.

Thanks.




Information forwarded to bug-gnu-emacs@HIDDEN:
bug#78157; Package emacs. Full text available.

Message received at submit <at> debbugs.gnu.org:


Received: (at submit) by debbugs.gnu.org; 30 Apr 2025 06:14:29 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Wed Apr 30 02:14:29 2025
Received: from localhost ([127.0.0.1]:38748 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
	id 1uA0iC-0007HZ-Ad
	for submit <at> debbugs.gnu.org; Wed, 30 Apr 2025 02:14:29 -0400
Received: from lists.gnu.org ([2001:470:142::17]:47464)
 by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.84_2) (envelope-from <theothernighttheotherday@HIDDEN>)
 id 1uA0i9-0007HE-HL
 for submit <at> debbugs.gnu.org; Wed, 30 Apr 2025 02:14:26 -0400
Received: from eggs.gnu.org ([2001:470:142:3::10])
 by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
 (Exim 4.90_1) (envelope-from <theothernighttheotherday@HIDDEN>)
 id 1uA0hv-0008ET-LR
 for bug-gnu-emacs@HIDDEN; Wed, 30 Apr 2025 02:14:14 -0400
Received: from mail-wr1-x42c.google.com ([2a00:1450:4864:20::42c])
 by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128)
 (Exim 4.90_1) (envelope-from <theothernighttheotherday@HIDDEN>)
 id 1uA0ht-0003bT-1r
 for bug-gnu-emacs@HIDDEN; Wed, 30 Apr 2025 02:14:11 -0400
Received: by mail-wr1-x42c.google.com with SMTP id
 ffacd0b85a97d-39ee5a5bb66so4488164f8f.3
 for <bug-gnu-emacs@HIDDEN>; Tue, 29 Apr 2025 23:14:08 -0700 (PDT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=gmail.com; s=20230601; t=1745993647; x=1746598447; darn=gnu.org;
 h=to:subject:message-id:date:from:mime-version:from:to:cc:subject
 :date:message-id:reply-to;
 bh=JVAOo7QWSrnGBw1JeuuOh7V/qB13bhEQ1n/roJcOlhs=;
 b=iwN9zCPnOWaBI+TIm4jaX03SPHmqtebjoqQVig9tftjCyHPBFekYUxIreaKR1AHjy8
 fjrIdJ3uGwLdWY6cXoR6MwcLP3lV4xog4HRotdNQpeAIVsO0K0QfQA81oH+F8cY83RyH
 iQXVIOKmJfUvJIuX0oIx1QBi4KRK0XdpKcRiFcdyIAoHM6j9CsLZGL/bDD++Dy+rHpn/
 uuDJ0jmCohz71Z7FuXx7Sc8N2ZPikId6znwLR56dtMH6Bxx4dTOdIUCkdzMdp/6UHe+f
 HIKtGZ64BBxzgqyIpbSz81Dckj70Yj2uDrx3mAyofycixs9m7a1jljMUeQ63zABaD02h
 Tuyw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20230601; t=1745993647; x=1746598447;
 h=to:subject:message-id:date:from:mime-version:x-gm-message-state
 :from:to:cc:subject:date:message-id:reply-to;
 bh=JVAOo7QWSrnGBw1JeuuOh7V/qB13bhEQ1n/roJcOlhs=;
 b=jKIbJb3s4HeM+GBX+3jHgaWpzX2GIjiUuwJnTribPJ3VyZ95PJD/RycbNVWqJbO7xI
 qfOWUX1A/rdPdCnnHr1Z4/AcRzflcXyvWgtnULh+eO8zhs+PBI7g0dZnxmVlF+0qoszh
 hCE5q64qdYUicpGQGEf/K8rzFVJZyyEy3KWnXWpQ676PxLm75ecVMvDNNoPLjmuar69d
 ZcOpuoH1yb0zTmsLuDldwek/v31C5fOSdPGT3QrtK1HIgiqhxkiUM6ddKxeaJXY2Dy9j
 j20w83EeJrBQZ5TytUcCERKobfikJfQ6L5/lbYVpYLutM6MR8uzFnjKoco9u4lrnskZN
 xE8Q==
X-Gm-Message-State: AOJu0YzXbRsIx6aWAnO0JZ65YBUn7x4dcdNLV56S0RuoBnH5NjyuNNLZ
 vrRIYVYuODXn9pmRu7lRBtY8Tu0yODxzIBWV5PjlTmHS/COjiq2vK8Z44rg5TiaeWVZUPfmWGaF
 ghtFYWiO0LKhTcwsV3b41WcitP2r7rw==
X-Gm-Gg: ASbGncsd2GxgYWHpic9I3El72DFTWRIrQs8rsOlO1QFySKkgSIs+eNcCptALDetIW/2
 +Ua2pL1SQo9NGBBG/aRo9i8Pl/OqzT+PaZ07ls7wIT7fw8S5S7x6pLd9jjrx0b3XFms39STEMOn
 Fw7s64IvoTxsLJfXToP8uQ
X-Google-Smtp-Source: AGHT+IEWdwlrGIEPCpu/8lQ6+/uejQOFX3vyjEkkRXijlLGSRltfCOEPXpo2PCiFUgMPQK9VWUeat123l+iCiZEeeM4=
X-Received: by 2002:a05:6000:2dc3:b0:399:7f2b:8531 with SMTP id
 ffacd0b85a97d-3a08f7a30fcmr1584385f8f.38.1745993646952; Tue, 29 Apr 2025
 23:14:06 -0700 (PDT)
MIME-Version: 1.0
From: badli al rashid <theothernighttheotherday@HIDDEN>
Date: Wed, 30 Apr 2025 14:13:54 +0800
X-Gm-Features: ATxdqUEu2wiIchzXS9QRsYNKKMZ76vognw2O8X1RJDj1c0TIMzi9rjWYa0QZHEs
Message-ID: <CAJinB_Do3Gdc-F_pk6EkY=S6hqH-w_S0LtDgf+eKsz0AZWCe8w@HIDDEN>
Subject: 31.0.50; 3.2 Install a Function Definition
To: bug-gnu-emacs@HIDDEN
Content-Type: multipart/alternative; boundary="0000000000001b59bb0633f8d38d"
Received-SPF: pass client-ip=2a00:1450:4864:20::42c;
 envelope-from=theothernighttheotherday@HIDDEN;
 helo=mail-wr1-x42c.google.com
X-Spam_score_int: -20
X-Spam_score: -2.1
X-Spam_bar: --
X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1,
 DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001,
 HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001,
 SPF_PASS=-0.001 autolearn=ham autolearn_force=no
X-Spam_action: no action
X-Spam-Score: 1.0 (+)
X-Debbugs-Envelope-To: submit
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -0.0 (/)

--0000000000001b59bb0633f8d38d
Content-Type: text/plain; charset="UTF-8"

--text follows this line--

error when installing the second version of the function from elisp
introduction to programming

     (defun multiply-by-seven (number)       ; Second version.
       "Multiply NUMBER by seven."
       (+ number number number number number number number))


Debugger entered--Lisp error: (void-variable number)
  (* 7 number)
  (progn (* 7 number))
  eval((progn (* 7 number)) t)
  elisp--eval-last-sexp(nil)
  #f(compiled-function () #<bytecode 0x18675df5af7f>)()
  handler-bind-1(#f(compiled-function () #<bytecode 0x18675df5af7f>)
(error) eval-expression--debug)
  eval-last-sexp(nil)
  funcall-interactively(eval-last-sexp nil)
  call-interactively(eval-last-sexp nil nil)
  command-execute(eval-last-sexp)
  recursive-edit()
  debug(error (void-variable definition.) :backtrace-base
eval-expression--debug)
  eval-expression--debug((void-variable definition.))
  (progn definition.)
  eval((progn definition.) t)
  elisp--eval-last-sexp(nil)
  #f(compiled-function () #<bytecode 0x18675df5af7f>)()
  handler-bind-1(#f(compiled-function () #<bytecode 0x18675df5af7f>)
(error) eval-expression--debug)
  eval-last-sexp(nil)
  funcall-interactively(eval-last-sexp nil)
  call-interactively(eval-last-sexp nil nil)
  command-execute(eval-last-sexp)
  recursive-edit()
  debug(error (void-variable number) :backtrace-base eval-expression--debug)
  eval-expression--debug((void-variable number))
  (* 7 number)
  (progn (* 7 number))
  eval((progn (* 7 number)) t)
  elisp--eval-last-sexp(nil)
  #f(compiled-function () #<bytecode 0x18675df5af7f>)()
  handler-bind-1(#f(compiled-function () #<bytecode 0x18675df5af7f>)
(error) eval-expression--debug)
  eval-last-sexp(nil)
  funcall-interactively(eval-last-sexp nil)
  call-interactively(eval-last-sexp nil nil)
  command-execute(eval-last-sexp)


In GNU Emacs 31.0.50 (build 1, aarch64-unknown-linux-android21) of
 2025-04-29 built on xeon
Repository revision: 825ea052ad5638c056037c4cac92c9e666dc3820
Windowing system distributor 'Xiaomi', version 34.0.0
System Description:
Redmi/sunstone_global/sunstone:14/UKQ1.240624.001/OS2.0.1.0.UMQMIXM:user/release-keys

Configured using:
 'configure --with-png=yes --with-webp=yes --with-gif=yes
 --with-jpeg=yes --with-xml2=yes --with-sqlite3=yes --with-gnutls=yes
 --with-tiff=yes --with-selinux=yes --with-modules=yes
 --with-tree-sitter=yes --with-imagemagick=no --with-lcms2=yes
 --with-mailutils= --with-pop=no-by-default --with-harfbuzz=yes
 --with-threads=yes --with-rsvg=yes --enable-check-lisp-object-type=
 --cache-file=config_cache.1 'CFLAGS=-O2
 -Werror=implicit-function-declaration''

Configured features:
GIF GLIB GMP GNUTLS HARFBUZZ JPEG LIBSELINUX LIBXML2 MODULES NOTIFY
INOTIFY PDUMPER PNG RSVG SECCOMP SQLITE3 THREADS TIFF TREE_SITTER WEBP
ZLIB

Important settings:
  value of $LANG: en_GB.UTF8
  locale-coding-system: utf-8-unix

Major mode: Debugger

Minor modes in effect:
  tooltip-mode: t
  global-eldoc-mode: t
  eldoc-mode: t
  show-paren-mode: t
  electric-indent-mode: t
  mouse-wheel-mode: t
  modifier-bar-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
  minibuffer-regexp-mode: t
  buffer-read-only: t
  column-number-mode: t
  line-number-mode: t
  indent-tabs-mode: t
  transient-mark-mode: t
  auto-composition-mode: t
  auto-encryption-mode: t
  auto-compression-mode: t

Load-path shadows:
~/Documents/packages/rainbow/rainbow-delimiters hides
/data/data/org.gnu.emacs/files/.emacs.d/elpa/rainbow-delimiters-2.1.5/rainbow-delimiters

Features:
(shadow sort mail-extr emacsbug lisp-mnt message yank-media puny dired
dired-loaddefs rfc822 mml mml-sec epa derived epg rfc6068 epg-config
gnus-util text-property-search mm-decode mm-bodies mm-encode mail-parse
rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045
ietf-drums mm-util mail-prsvr mail-utils ielm pp comint ansi-osc
ansi-color ring kmacro thingatpt vc-git diff-mode track-changes files-x
vc-dispatcher elec-pair face-remap help-fns radix-tree cl-print debug
backtrace help-mode find-func time-date mule-util info
display-line-numbers init finder-inf rainbow-delimiters easy-mmode
rainbow-delimiters-autoloads package browse-url xdg url url-proxy
url-privacy url-expand url-methods url-history url-cookie
generate-lisp-file url-domsuf url-util mailcap url-handlers url-parse
auth-source cl-seq eieio eieio-core cl-macs icons password-cache json
subr-x map byte-opt gv bytecomp byte-compile url-vars cl-loaddefs cl-lib
rmc iso-transl tooltip cus-start cconv eldoc paren electric uniquify
ediff-hook vc-hooks lisp-float-type elisp-mode mwheel android-win
term/common-win touch-screen ls-lisp tool-bar dnd fontset image
regexp-opt fringe tabulated-list replace newcomment text-mode lisp-mode
prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymenu
timer select scroll-bar mouse jit-lock font-lock syntax font-core
term/tty-colors frame minibuffer nadvice seq simple cl-generic
indonesian philippine 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 emoji-zwj charscript charprop case-table epa-hook
jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button loaddefs
theme-loaddefs faces cus-face macroexp files window text-properties
overlay sha1 md5 base64 format env code-pages mule custom widget keymap
hashtable-print-readable backquote threads inotify dynamic-setting
android multi-tty move-toolbar make-network-process tty-child-frames
emacs)

Memory information:
((conses 16 125782 40750) (symbols 48 10611 0) (strings 32 34048 1974)
 (string-bytes 1 800690) (vectors 16 20310)
 (vector-slots 8 196436 9107) (floats 8 51 153) (intervals 56 4321 0)
 (buffers 992 18))


Sent from Gmail

--0000000000001b59bb0633f8d38d
Content-Type: text/html; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable

<div dir=3D"auto"><div><div dir=3D"auto"><br></div><div dir=3D"auto">--text=
 follows this line--</div><div dir=3D"auto"><br></div><div dir=3D"auto">err=
or when installing the second version of the function from elisp</div><div =
dir=3D"auto">introduction to programming</div><div dir=3D"auto"><br></div><=
div dir=3D"auto">=C2=A0 =C2=A0 =C2=A0(defun multiply-by-seven (number)=C2=
=A0 =C2=A0 =C2=A0 =C2=A0; Second version.</div><div dir=3D"auto">=C2=A0 =C2=
=A0 =C2=A0 =C2=A0&quot;Multiply NUMBER by seven.&quot;</div><div dir=3D"aut=
o">=C2=A0 =C2=A0 =C2=A0 =C2=A0(+ number number number number number number =
number))</div><div dir=3D"auto"><br></div><div dir=3D"auto"><br></div><div =
dir=3D"auto">Debugger entered--Lisp error: (void-variable number)</div><div=
 dir=3D"auto">=C2=A0 (* 7 number)</div><div dir=3D"auto">=C2=A0 (progn (* 7=
 number))</div><div dir=3D"auto">=C2=A0 eval((progn (* 7 number)) t)</div><=
div dir=3D"auto">=C2=A0 elisp--eval-last-sexp(nil)</div><div dir=3D"auto">=
=C2=A0 #f(compiled-function () #&lt;bytecode 0x18675df5af7f&gt;)()</div><di=
v dir=3D"auto">=C2=A0 handler-bind-1(#f(compiled-function () #&lt;bytecode =
0x18675df5af7f&gt;) (error) eval-expression--debug)</div><div dir=3D"auto">=
=C2=A0 eval-last-sexp(nil)</div><div dir=3D"auto">=C2=A0 funcall-interactiv=
ely(eval-last-sexp nil)</div><div dir=3D"auto">=C2=A0 call-interactively(ev=
al-last-sexp nil nil)</div><div dir=3D"auto">=C2=A0 command-execute(eval-la=
st-sexp)</div><div dir=3D"auto">=C2=A0 recursive-edit()</div><div dir=3D"au=
to">=C2=A0 debug(error (void-variable definition.) :backtrace-base eval-exp=
ression--debug)</div><div dir=3D"auto">=C2=A0 eval-expression--debug((void-=
variable definition.))</div><div dir=3D"auto">=C2=A0 (progn definition.)</d=
iv><div dir=3D"auto">=C2=A0 eval((progn definition.) t)</div><div dir=3D"au=
to">=C2=A0 elisp--eval-last-sexp(nil)</div><div dir=3D"auto">=C2=A0 #f(comp=
iled-function () #&lt;bytecode 0x18675df5af7f&gt;)()</div><div dir=3D"auto"=
>=C2=A0 handler-bind-1(#f(compiled-function () #&lt;bytecode 0x18675df5af7f=
&gt;) (error) eval-expression--debug)</div><div dir=3D"auto">=C2=A0 eval-la=
st-sexp(nil)</div><div dir=3D"auto">=C2=A0 funcall-interactively(eval-last-=
sexp nil)</div><div dir=3D"auto">=C2=A0 call-interactively(eval-last-sexp n=
il nil)</div><div dir=3D"auto">=C2=A0 command-execute(eval-last-sexp)</div>=
<div dir=3D"auto">=C2=A0 recursive-edit()</div><div dir=3D"auto">=C2=A0 deb=
ug(error (void-variable number) :backtrace-base eval-expression--debug)</di=
v><div dir=3D"auto">=C2=A0 eval-expression--debug((void-variable number))</=
div><div dir=3D"auto">=C2=A0 (* 7 number)</div><div dir=3D"auto">=C2=A0 (pr=
ogn (* 7 number))</div><div dir=3D"auto">=C2=A0 eval((progn (* 7 number)) t=
)</div><div dir=3D"auto">=C2=A0 elisp--eval-last-sexp(nil)</div><div dir=3D=
"auto">=C2=A0 #f(compiled-function () #&lt;bytecode 0x18675df5af7f&gt;)()</=
div><div dir=3D"auto">=C2=A0 handler-bind-1(#f(compiled-function () #&lt;by=
tecode 0x18675df5af7f&gt;) (error) eval-expression--debug)</div><div dir=3D=
"auto">=C2=A0 eval-last-sexp(nil)</div><div dir=3D"auto">=C2=A0 funcall-int=
eractively(eval-last-sexp nil)</div><div dir=3D"auto">=C2=A0 call-interacti=
vely(eval-last-sexp nil nil)</div><div dir=3D"auto">=C2=A0 command-execute(=
eval-last-sexp)</div><div dir=3D"auto"><br></div><div dir=3D"auto"><br></di=
v><div dir=3D"auto">In GNU Emacs 31.0.50 (build 1, aarch64-unknown-linux-an=
droid21) of</div><div dir=3D"auto">=C2=A02025-04-29 built on xeon</div><div=
 dir=3D"auto">Repository revision: 825ea052ad5638c056037c4cac92c9e666dc3820=
</div><div dir=3D"auto">Windowing system distributor &#39;Xiaomi&#39;, vers=
ion 34.0.0</div><div dir=3D"auto">System Description: Redmi/sunstone_global=
/sunstone:14/UKQ1.240624.001/OS2.0.1.0.UMQMIXM:user/release-keys</div><div =
dir=3D"auto"><br></div><div dir=3D"auto">Configured using:</div><div dir=3D=
"auto">=C2=A0&#39;configure --with-png=3Dyes --with-webp=3Dyes --with-gif=
=3Dyes</div><div dir=3D"auto">=C2=A0--with-jpeg=3Dyes --with-xml2=3Dyes --w=
ith-sqlite3=3Dyes --with-gnutls=3Dyes</div><div dir=3D"auto">=C2=A0--with-t=
iff=3Dyes --with-selinux=3Dyes --with-modules=3Dyes</div><div dir=3D"auto">=
=C2=A0--with-tree-sitter=3Dyes --with-imagemagick=3Dno --with-lcms2=3Dyes</=
div><div dir=3D"auto">=C2=A0--with-mailutils=3D --with-pop=3Dno-by-default =
--with-harfbuzz=3Dyes</div><div dir=3D"auto">=C2=A0--with-threads=3Dyes --w=
ith-rsvg=3Dyes --enable-check-lisp-object-type=3D</div><div dir=3D"auto">=
=C2=A0--cache-file=3Dconfig_cache.1 &#39;CFLAGS=3D-O2</div><div dir=3D"auto=
">=C2=A0-Werror=3Dimplicit-function-declaration&#39;&#39;</div><div dir=3D"=
auto"><br></div><div dir=3D"auto">Configured features:</div><div dir=3D"aut=
o">GIF GLIB GMP GNUTLS HARFBUZZ JPEG LIBSELINUX LIBXML2 MODULES NOTIFY</div=
><div dir=3D"auto">INOTIFY PDUMPER PNG RSVG SECCOMP SQLITE3 THREADS TIFF TR=
EE_SITTER WEBP</div><div dir=3D"auto">ZLIB</div><div dir=3D"auto"><br></div=
><div dir=3D"auto">Important settings:</div><div dir=3D"auto">=C2=A0 value =
of $LANG: en_GB.UTF8</div><div dir=3D"auto">=C2=A0 locale-coding-system: ut=
f-8-unix</div><div dir=3D"auto"><br></div><div dir=3D"auto">Major mode: Deb=
ugger</div><div dir=3D"auto"><br></div><div dir=3D"auto">Minor modes in eff=
ect:</div><div dir=3D"auto">=C2=A0 tooltip-mode: t</div><div dir=3D"auto">=
=C2=A0 global-eldoc-mode: t</div><div dir=3D"auto">=C2=A0 eldoc-mode: t</di=
v><div dir=3D"auto">=C2=A0 show-paren-mode: t</div><div dir=3D"auto">=C2=A0=
 electric-indent-mode: t</div><div dir=3D"auto">=C2=A0 mouse-wheel-mode: t<=
/div><div dir=3D"auto">=C2=A0 modifier-bar-mode: t</div><div dir=3D"auto">=
=C2=A0 tool-bar-mode: t</div><div dir=3D"auto">=C2=A0 menu-bar-mode: t</div=
><div dir=3D"auto">=C2=A0 file-name-shadow-mode: t</div><div dir=3D"auto">=
=C2=A0 global-font-lock-mode: t</div><div dir=3D"auto">=C2=A0 font-lock-mod=
e: t</div><div dir=3D"auto">=C2=A0 blink-cursor-mode: t</div><div dir=3D"au=
to">=C2=A0 minibuffer-regexp-mode: t</div><div dir=3D"auto">=C2=A0 buffer-r=
ead-only: t</div><div dir=3D"auto">=C2=A0 column-number-mode: t</div><div d=
ir=3D"auto">=C2=A0 line-number-mode: t</div><div dir=3D"auto">=C2=A0 indent=
-tabs-mode: t</div><div dir=3D"auto">=C2=A0 transient-mark-mode: t</div><di=
v dir=3D"auto">=C2=A0 auto-composition-mode: t</div><div dir=3D"auto">=C2=
=A0 auto-encryption-mode: t</div><div dir=3D"auto">=C2=A0 auto-compression-=
mode: t</div><div dir=3D"auto"><br></div><div dir=3D"auto">Load-path shadow=
s:</div><div dir=3D"auto">~/Documents/packages/rainbow/rainbow-delimiters h=
ides /data/data/org.gnu.emacs/files/.emacs.d/elpa/rainbow-delimiters-2.1.5/=
rainbow-delimiters</div><div dir=3D"auto"><br></div><div dir=3D"auto">Featu=
res:</div><div dir=3D"auto">(shadow sort mail-extr emacsbug lisp-mnt messag=
e yank-media puny dired</div><div dir=3D"auto">dired-loaddefs rfc822 mml mm=
l-sec epa derived epg rfc6068 epg-config</div><div dir=3D"auto">gnus-util t=
ext-property-search mm-decode mm-bodies mm-encode mail-parse</div><div dir=
=3D"auto">rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045<=
/div><div dir=3D"auto">ietf-drums mm-util mail-prsvr mail-utils ielm pp com=
int ansi-osc</div><div dir=3D"auto">ansi-color ring kmacro thingatpt vc-git=
 diff-mode track-changes files-x</div><div dir=3D"auto">vc-dispatcher elec-=
pair face-remap help-fns radix-tree cl-print debug</div><div dir=3D"auto">b=
acktrace help-mode find-func time-date mule-util info</div><div dir=3D"auto=
">display-line-numbers init finder-inf rainbow-delimiters easy-mmode</div><=
div dir=3D"auto">rainbow-delimiters-autoloads package browse-url xdg url ur=
l-proxy</div><div dir=3D"auto">url-privacy url-expand url-methods url-histo=
ry url-cookie</div><div dir=3D"auto">generate-lisp-file url-domsuf url-util=
 mailcap url-handlers url-parse</div><div dir=3D"auto">auth-source cl-seq e=
ieio eieio-core cl-macs icons password-cache json</div><div dir=3D"auto">su=
br-x map byte-opt gv bytecomp byte-compile url-vars cl-loaddefs cl-lib</div=
><div dir=3D"auto">rmc iso-transl tooltip cus-start cconv eldoc paren elect=
ric uniquify</div><div dir=3D"auto">ediff-hook vc-hooks lisp-float-type eli=
sp-mode mwheel android-win</div><div dir=3D"auto">term/common-win touch-scr=
een ls-lisp tool-bar dnd fontset image</div><div dir=3D"auto">regexp-opt fr=
inge tabulated-list replace newcomment text-mode lisp-mode</div><div dir=3D=
"auto">prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymen=
u</div><div dir=3D"auto">timer select scroll-bar mouse jit-lock font-lock s=
yntax font-core</div><div dir=3D"auto">term/tty-colors frame minibuffer nad=
vice seq simple cl-generic</div><div dir=3D"auto">indonesian philippine cha=
m georgian utf-8-lang misc-lang vietnamese</div><div dir=3D"auto">tibetan t=
hai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek</div><div di=
r=3D"auto">romanian slovak czech european ethiopic indian cyrillic chinese<=
/div><div dir=3D"auto">composite emoji-zwj charscript charprop case-table e=
pa-hook</div><div dir=3D"auto">jka-cmpr-hook help abbrev obarray oclosure c=
l-preloaded button loaddefs</div><div dir=3D"auto">theme-loaddefs faces cus=
-face macroexp files window text-properties</div><div dir=3D"auto">overlay =
sha1 md5 base64 format env code-pages mule custom widget keymap</div><div d=
ir=3D"auto">hashtable-print-readable backquote threads inotify dynamic-sett=
ing</div><div dir=3D"auto">android multi-tty move-toolbar make-network-proc=
ess tty-child-frames</div><div dir=3D"auto">emacs)</div><div dir=3D"auto"><=
br></div><div dir=3D"auto">Memory information:</div><div dir=3D"auto">((con=
ses 16 125782 40750) (symbols 48 10611 0) (strings 32 34048 1974)</div><div=
 dir=3D"auto">=C2=A0(string-bytes 1 800690) (vectors 16 20310)</div><div di=
r=3D"auto">=C2=A0(vector-slots 8 196436 9107) (floats 8 51 153) (intervals =
56 4321 0)</div><div dir=3D"auto">=C2=A0(buffers 992 18))</div></div><div d=
ir=3D"auto"><br></div><div><br></div><div data-smartmail=3D"gmail_signature=
">Sent from Gmail</div></div>

--0000000000001b59bb0633f8d38d--




Acknowledgement sent to badli al rashid <theothernighttheotherday@HIDDEN>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs@HIDDEN. Full text available.
Report forwarded to bug-gnu-emacs@HIDDEN:
bug#78157; Package emacs. Full text available.
Please note: This is a static page, with minimal formatting, updated once a day.
Click here to see this page with the latest information and nicer formatting.
Last modified: Wed, 30 Apr 2025 06:45:02 UTC

GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997 nCipher Corporation Ltd, 1994-97 Ian Jackson.