Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
32c06229
Commit
32c06229
authored
May 01, 2003
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(unbind_to): Don't handle symbol = Qnil any more.
parent
6cbe2e28
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
6 deletions
+19
-6
src/ChangeLog
src/ChangeLog
+19
-2
src/eval.c
src/eval.c
+0
-4
No files found.
src/ChangeLog
View file @
32c06229
2003-04-30 Stefan Monnier <monnier@cs.yale.edu>
* eval.c (unbind_to): Don't handle symbol = Qnil any more.
* lisp.h (CHECK): Wrap args in parenthesis.
(specbind): Fix doc: symbol = Qnil is not supported any more.
* bytecode.c (Fbyte_code) <unwind-protect>:
Use Fprogn rather than 0 and Qnil.
* keyboard.c (parse_modifiers_uncached): Parse `down', `drag',
`double', and `triple' modifiers as well.
2003-04-30 Richard M. Stallman <rms@gnu.org>
* keyboard.c (echo_char): Don't clear out a dash that follows a space.
...
...
@@ -10,7 +23,7 @@
* eval.c (Fsignal): Clear abort_on_gc.
* editfns.c (Fformat): Set abort_on_gc during first scan of format.
Reinit FORMAT_START and END before second scan.
Reinit FORMAT_START and END before second scan.
* xdisp.c (move_it_vertically_backward): Do the final big else
even if nlines is 0.
...
...
@@ -35,9 +48,13 @@
2003-04-23 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
* xdisp.c (update_tool_bar): BLOCK_INPUT before calling
tool_bar_items so GTK tool bar expose callback does not access items
tool_bar_items so GTK tool bar expose callback does not access items
being updated.
2003-04-19 Stefan Monnier <monnier@cs.yale.edu>
* eval.c (Fapply): Undo last change and add a comment about why.
2003-04-18 Miles Bader <miles@gnu.org>
* data.c (Faset): Calculate nbytes earlier, to satisfy the now
...
...
src/eval.c
View file @
32c06229
...
...
@@ -3074,10 +3074,6 @@ unbind_to (count, value)
if
(
specpdl_ptr
->
func
!=
0
)
(
*
specpdl_ptr
->
func
)
(
specpdl_ptr
->
old_value
);
/* Note that a "binding" of nil is really an unwind protect,
so in that case the "old value" is a list of forms to evaluate. */
else
if
(
NILP
(
specpdl_ptr
->
symbol
))
Fprogn
(
specpdl_ptr
->
old_value
);
/* If the symbol is a list, it is really (SYMBOL WHERE
. CURRENT-BUFFER) where WHERE is either nil, a buffer, or a
frame. If WHERE is a buffer or frame, this indicates we
...
...
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