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
ade8ee9e
Commit
ade8ee9e
authored
Sep 18, 2002
by
Kenichi Handa
Browse files
*** empty log message ***
parent
8c6e735b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/syntax.c
src/syntax.c
+1
-1
No files found.
src/ChangeLog
View file @
ade8ee9e
2002-09-18 Kenichi Handa <handa@etl.go.jp>
* syntax.c (skip_syntaxes): Fix previous change.
2002-09-13 Kenichi Handa <handa@etl.go.jp>
* syntax.c (skip_chars): Fix previous change.
...
...
src/syntax.c
View file @
ade8ee9e
...
...
@@ -1731,7 +1731,7 @@ skip_syntaxes (forwardp, string, lim)
if
(
XINT
(
lim
)
<
BEGV
)
XSETFASTINT
(
lim
,
BEGV
);
if (forward ? PT >= XFASTINT (lim) : PT <= XFASTINT (lim))
if
(
forward
p
?
(
PT
>=
XFASTINT
(
lim
)
)
:
(
PT
<=
XFASTINT
(
lim
))
)
return
0
;
multibyte
=
(
!
NILP
(
current_buffer
->
enable_multibyte_characters
)
...
...
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