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
4e837cd0
Commit
4e837cd0
authored
Apr 24, 2003
by
Kenichi Handa
Browse files
(skip_chars): Fix previous change.
parent
f7fd2535
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
src/ChangeLog
src/ChangeLog
+4
-0
src/syntax.c
src/syntax.c
+2
-2
No files found.
src/ChangeLog
View file @
4e837cd0
2003-04-25 Kenichi Handa <handa@m17n.org>
* syntax.c (skip_chars): Fix previous change.
2003-04-24 Kenichi Handa <handa@m17n.org>
* syntax.c (skip_chars): Make the code faster by using the common
...
...
src/syntax.c
View file @
4e837cd0
...
...
@@ -1656,7 +1656,7 @@ skip_chars (forwardp, syntaxp, string, lim)
p
=
GAP_END_ADDR
;
stop
=
endp
;
}
if
(
fastmap
[
*
p
])
if
(
!
fastmap
[
*
p
])
break
;
p
++
,
pos
++
;
}
...
...
@@ -1709,7 +1709,7 @@ skip_chars (forwardp, syntaxp, string, lim)
p
=
GPT_ADDR
;
stop
=
endp
;
}
if
(
fastmap
[
p
[
-
1
]])
if
(
!
fastmap
[
p
[
-
1
]])
break
;
p
--
,
pos
--
;
}
...
...
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