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
94aa5d2d
Commit
94aa5d2d
authored
Oct 29, 1992
by
Richard M. Stallman
Browse files
(count_blanks): Leave argument r constant, and increment p.
parent
db59472c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/dispnew.c
src/dispnew.c
+4
-4
No files found.
src/dispnew.c
View file @
94aa5d2d
...
...
@@ -328,7 +328,7 @@ line_hash_code (m, vpos)
if
(
!
m
->
enable
[
vpos
])
return
0
;
/* Give all
l
ighlighted lines the same hash code
/* Give all
h
ighlighted lines the same hash code
so as to encourage scrolling to leave them in place. */
if
(
m
->
highlight
[
vpos
])
return
-
1
;
...
...
@@ -833,7 +833,7 @@ cancel_my_columns (w)
They may return 0 meaning nothing was done if anything is difficult,
or 1 meaning the output was performed properly.
They assume that the frame was up to date before the buffer
change being displayed. T
H
ey make various other assumptions too;
change being displayed. T
h
ey make various other assumptions too;
see command_loop_1 where these are called. */
int
...
...
@@ -1245,8 +1245,8 @@ count_blanks (r)
register
GLYPH
*
r
;
{
register
GLYPH
*
p
=
r
;
while
(
*
r
++
==
SPACEGLYPH
);
return
r
-
p
-
1
;
while
(
*
p
++
==
SPACEGLYPH
);
return
p
-
r
-
1
;
}
static
int
...
...
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