Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
481399bf
Commit
481399bf
authored
Feb 15, 1993
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(search_command): When moving to LIM on failure, return LIM.
parent
3bd779aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/search.c
src/search.c
+3
-2
No files found.
src/search.c
View file @
481399bf
...
...
@@ -502,9 +502,10 @@ search_command (string, bound, noerror, count, direction, RE)
{
if
(
lim
<
BEGV
||
lim
>
ZV
)
abort
();
SET_PT
(
lim
)
;
np
=
lim
;
}
return
Qnil
;
else
return
Qnil
;
}
if
(
np
<
BEGV
||
np
>
ZV
)
...
...
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