* bug#14100: 24.3.50; emacs_backtrace.txt
@ 2013-03-30 22:51 Drew Adams
2013-03-31 5:55 ` Eli Zaretskii
0 siblings, 1 reply; 4+ messages in thread
From: Drew Adams @ 2013-03-30 22:51 UTC (permalink / raw)
To: 14100
Backtrace:
0x01159769
0x011597DB
0x012E3AB5
0x010CCD49
0x01039DCD
0x0103BA2C
0x01024070
0x01010C39
0x01023814
0x01010696
0x010237CE
0x01022D88
0x010230B5
0x010029C4
0x010010F9
0x7C81776B
In GNU Emacs 24.3.50.1 (i386-mingw-nt5.1.2600)
of 2013-03-28 on ODIEONE
Bzr revision: 112173 monnier@iro.umontreal.ca-20130328163306-419khox8aneaoaxv
Windowing system distributor `Microsoft Corp.', version 5.1.2600
Configured using:
`configure --with-gcc (4.7) --no-opt --enable-checking --cflags
-IC:/Devel/emacs/build/include --ldflags -LC:/Devel/emacs/build/lib'
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#14100: 24.3.50; emacs_backtrace.txt
2013-03-30 22:51 bug#14100: 24.3.50; emacs_backtrace.txt Drew Adams
@ 2013-03-31 5:55 ` Eli Zaretskii
2015-12-29 11:09 ` Lars Ingebrigtsen
0 siblings, 1 reply; 4+ messages in thread
From: Eli Zaretskii @ 2013-03-31 5:55 UTC (permalink / raw)
To: Drew Adams; +Cc: 14100
> From: "Drew Adams" <drew.adams@oracle.com>
> Date: Sat, 30 Mar 2013 15:51:52 -0700
>
> Backtrace:
> 0x01159769
> 0x011597DB
> 0x012E3AB5
> 0x010CCD49
> 0x01039DCD
> 0x0103BA2C
> 0x01024070
> 0x01010C39
> 0x01023814
> 0x01010696
> 0x010237CE
> 0x01022D88
> 0x010230B5
> 0x010029C4
> 0x010010F9
> 0x7C81776B
w32_backtrace at C:\Devel\emacs\repo\build\src/w32fns.c:7729
emacs_abort at C:\Devel\emacs\repo\build\src/w32fns.c:7761
get_local_map at C:\Devel\emacs\repo\build\src/intervals.c:2212
Fcurrent_active_maps at C:\Devel\emacs\repo\build\src/keymap.c:1611
active_maps at C:\Devel\emacs\repo\build\src/keyboard.c:8572
read_key_sequence at C:\Devel\emacs\repo\build\src/keyboard.c:9201
command_loop_1 at C:\Devel\emacs\repo\build\src/keyboard.c:1458
internal_condition_case at C:\Devel\emacs\repo\build\src/eval.c:1193
command_loop_2 at C:\Devel\emacs\repo\build\src/keyboard.c:1173
internal_catch at C:\Devel\emacs\repo\build\src/eval.c:964
command_loop at C:\Devel\emacs\repo\build\src/keyboard.c:1152
recursive_edit_1 at C:\Devel\emacs\repo\build\src/keyboard.c:785
Frecursive_edit at C:\Devel\emacs\repo\build\src/keyboard.c:849
main at C:\Devel\emacs\repo\build\src/emacs.c:1531
?? at crt1.c:0
The abort is here (in get_local_map):
/* Perhaps we should just change `position' to the limit. */
if (position > BUF_ZV (buffer) || position < BUF_BEGV (buffer))
emacs_abort ();
The caller, Fcurrent_active_maps, checks a different condition before
the call:
pos = POSN_BUFFER_POSN (position);
if (INTEGERP (pos)
&& XINT (pos) >= BEG && XINT (pos) <= Z)
{
local_map = get_local_map (XINT (pos),
current_buffer, Qlocal_map);
So perhaps the bug is in the caller: it should test BEGV and ZV
instead of BEG and Z.
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#14100: 24.3.50; emacs_backtrace.txt
2013-03-31 5:55 ` Eli Zaretskii
@ 2015-12-29 11:09 ` Lars Ingebrigtsen
2015-12-29 17:42 ` Eli Zaretskii
0 siblings, 1 reply; 4+ messages in thread
From: Lars Ingebrigtsen @ 2015-12-29 11:09 UTC (permalink / raw)
To: Eli Zaretskii; +Cc: 14100
> The abort is here (in get_local_map):
>
> /* Perhaps we should just change `position' to the limit. */
> if (position > BUF_ZV (buffer) || position < BUF_BEGV (buffer))
> emacs_abort ();
>
> The caller, Fcurrent_active_maps, checks a different condition before
> the call:
>
> pos = POSN_BUFFER_POSN (position);
> if (INTEGERP (pos)
> && XINT (pos) >= BEG && XINT (pos) <= Z)
> {
> local_map = get_local_map (XINT (pos),
> current_buffer, Qlocal_map);
>
> So perhaps the bug is in the caller: it should test BEGV and ZV
> instead of BEG and Z.
Was there anything to be done here? It sounds like it, but then there
were no further messages. :-)
--
(domestic pets only, the antidote for overdose, milk.)
bloggy blog: http://lars.ingebrigtsen.no
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#14100: 24.3.50; emacs_backtrace.txt
2015-12-29 11:09 ` Lars Ingebrigtsen
@ 2015-12-29 17:42 ` Eli Zaretskii
0 siblings, 0 replies; 4+ messages in thread
From: Eli Zaretskii @ 2015-12-29 17:42 UTC (permalink / raw)
To: Lars Ingebrigtsen; +Cc: 14100-done
> From: Lars Ingebrigtsen <larsi@gnus.org>
> Cc: Drew Adams <drew.adams@oracle.com>, 14100@debbugs.gnu.org
> Date: Tue, 29 Dec 2015 12:09:56 +0100
>
> > The abort is here (in get_local_map):
> >
> > /* Perhaps we should just change `position' to the limit. */
> > if (position > BUF_ZV (buffer) || position < BUF_BEGV (buffer))
> > emacs_abort ();
> >
> > The caller, Fcurrent_active_maps, checks a different condition before
> > the call:
> >
> > pos = POSN_BUFFER_POSN (position);
> > if (INTEGERP (pos)
> > && XINT (pos) >= BEG && XINT (pos) <= Z)
> > {
> > local_map = get_local_map (XINT (pos),
> > current_buffer, Qlocal_map);
> >
> > So perhaps the bug is in the caller: it should test BEGV and ZV
> > instead of BEG and Z.
>
> Was there anything to be done here? It sounds like it, but then there
> were no further messages. :-)
The call to emacs_abort is no longer in the source. Instead, we have
this:
position = clip_to_bounds (BUF_BEGV (buffer), position, BUF_ZV (buffer));
So I'm closing the bug, as the problem can no longer happen.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-12-29 17:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-30 22:51 bug#14100: 24.3.50; emacs_backtrace.txt Drew Adams
2013-03-31 5:55 ` Eli Zaretskii
2015-12-29 11:09 ` Lars Ingebrigtsen
2015-12-29 17:42 ` 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).