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
63fa018d
Commit
63fa018d
authored
Jun 14, 1994
by
Richard M. Stallman
Browse files
(find_next_newline_no_quit): New function.
parent
12e53d2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
src/search.c
src/search.c
+7
-0
No files found.
src/search.c
View file @
63fa018d
...
...
@@ -348,6 +348,13 @@ scan_buffer (target, start, count, shortage, allow_quit)
return
(
start
+
((
direction
==
1
?
0
:
1
)));
}
int
find_next_newline_no_quit
(
from
,
cnt
)
register
int
from
,
cnt
;
{
return
scan_buffer
(
'\n'
,
from
,
cnt
,
(
int
*
)
0
,
0
);
}
int
find_next_newline
(
from
,
cnt
)
register
int
from
,
cnt
;
...
...
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