Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
afd4479f
Commit
afd4479f
authored
Jan 24, 2014
by
Stefan Monnier
Browse files
* src/eval.c (Fsignal): Fix `debug' handling to match 2013-10-03 change.
parent
4d000e69
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
src/ChangeLog
src/ChangeLog
+4
-0
src/eval.c
src/eval.c
+2
-2
src/xdisp.c
src/xdisp.c
+3
-2
No files found.
src/ChangeLog
View file @
afd4479f
2014-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
* eval.c (Fsignal): Fix `debug' handling to match 2013-10-03 change.
2014-01-24 Paul Eggert <eggert@cs.ucla.edu>
Fix bool-vector-count-population bug on MinGW64 (Bug#16535).
...
...
src/eval.c
View file @
afd4479f
...
...
@@ -1533,8 +1533,8 @@ See also the function `condition-case'. */)
||
NILP
(
clause
)
/* A `debug' symbol in the handler list disables the normal
suppression of the debugger. */
||
(
CONSP
(
clause
)
&&
CONSP
(
XCAR
(
clause
)
)
&&
!
NILP
(
Fmemq
(
Qdebug
,
XCAR
(
clause
)))
)
||
(
CONSP
(
clause
)
&&
CONSP
(
clause
)
&&
!
NILP
(
Fmemq
(
Qdebug
,
clause
)))
/* Special handler that means "print a message and run debugger
if requested". */
||
EQ
(
h
->
tag_or_ch
,
Qerror
)))
...
...
src/xdisp.c
View file @
afd4479f
...
...
@@ -2804,8 +2804,9 @@ init_iterator (struct it *it, struct window *w,
it->redisplay_end_trigger_charpos
= marker_position (w->redisplay_end_trigger);
else if (INTEGERP (w->redisplay_end_trigger))
it->redisplay_end_trigger_charpos =
clip_to_bounds (PTRDIFF_MIN, XINT (w->redisplay_end_trigger), PTRDIFF_MAX);
it->redisplay_end_trigger_charpos
= clip_to_bounds (PTRDIFF_MIN, XINT (w->redisplay_end_trigger),
PTRDIFF_MAX);
it->tab_width = SANE_TAB_WIDTH (current_buffer);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment