Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
618db430
Commit
618db430
authored
Mar 05, 2010
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(skip_chars): Setup gl_state (bug#3823).
(in_classes): Use CONSP before XCAR/XCDR.
parent
324f60ef
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/syntax.c
src/syntax.c
+7
-1
No files found.
src/ChangeLog
View file @
618db430
2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
* syntax.c (skip_chars): Setup gl_state (bug#3823).
(in_classes): Use CONSP before XCAR/XCDR.
2010-03-03 Chong Yidong <cyd@stupidchicken.com>
* keymap.c (Fwhere_is_internal): Use Fequal to compare
...
...
src/syntax.c
View file @
618db430
...
...
@@ -1747,6 +1747,12 @@ skip_chars (forwardp, string, lim, handle_iso_classes)
}
immediate_quit
=
1
;
/* This code may look up syntax tables using macros that rely on the
gl_state object. To make sure this object is not out of date,
let's initialize it manually.
We ignore syntax-table text-properties for now, since that's
what we've done in the past. */
SETUP_SYNTAX_TABLE
(
BEGV
,
0
);
if
(
forwardp
)
{
if
(
multibyte
)
...
...
@@ -2072,7 +2078,7 @@ in_classes (c, iso_classes)
{
int
fits_class
=
0
;
while
(
!
NIL
P
(
iso_classes
))
while
(
CONS
P
(
iso_classes
))
{
Lisp_Object
elt
;
elt
=
XCAR
(
iso_classes
);
...
...
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