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
a0aa7fcf
Commit
a0aa7fcf
authored
Jul 11, 2006
by
Stefan Monnier
Browse files
(forw_comment): Also use EMACS_INT for buffer positions.
parent
5f7c79f9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
src/ChangeLog
src/ChangeLog
+6
-2
src/syntax.c
src/syntax.c
+3
-2
No files found.
src/ChangeLog
View file @
a0aa7fcf
2006-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
* syntax.c (forw_comment): Also use EMACS_INT for buffer positions.
2006-07-11 Kim F. Storm <storm@cua.dk>
* dispnew.c (Fredisplay): Add FORCE argument to force redisplay when
...
...
@@ -11,8 +15,8 @@
* dispnew.c (Fredisplay): New function, equivalent to (sit-for 0).
(Fsit_for): Function deleted.
* keyboard.c (command_loop_1, Fexecute_extended_command):
Call
sit_for instead of Fsit_for.
* keyboard.c (command_loop_1, Fexecute_extended_command):
Call
sit_for instead of Fsit_for.
* minibuf.c (temp_echo_area_glyphs): Likewise.
...
...
src/syntax.c
View file @
a0aa7fcf
...
...
@@ -1891,9 +1891,10 @@ in_classes (c, iso_classes)
static
int
forw_comment
(
from
,
from_byte
,
stop
,
nesting
,
style
,
prev_syntax
,
charpos_ptr
,
bytepos_ptr
,
incomment_ptr
)
int
from
,
from_byte
,
stop
;
EMACS_INT
from
,
from_byte
,
stop
;
int
nesting
,
style
,
prev_syntax
;
int
*
charpos_ptr
,
*
bytepos_ptr
,
*
incomment_ptr
;
EMACS_INT
*
charpos_ptr
,
*
bytepos_ptr
;
int
*
incomment_ptr
;
{
register
int
c
,
c1
;
register
enum
syntaxcode
code
;
...
...
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