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
78445046
Commit
78445046
authored
Jun 11, 1994
by
Richard M. Stallman
Browse files
(Freplace_match): Be sure not to treat non-digit like digit.
parent
42bbacdf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/search.c
src/search.c
+1
-1
No files found.
src/search.c
View file @
78445046
...
...
@@ -1273,7 +1273,7 @@ Leaves point at end of replacement text.")
(
Fcurrent_buffer
(),
make_number
(
search_regs
.
start
[
0
]
+
offset
),
make_number
(
search_regs
.
end
[
0
]
+
offset
));
else
if
(
c
>=
'1'
&&
c
<=
search_regs
.
num_regs
+
'0'
)
else
if
(
c
>=
'1'
&&
c
<=
'9'
&&
c
<=
search_regs
.
num_regs
+
'0'
)
{
if
(
search_regs
.
start
[
c
-
'0'
]
>=
1
)
Finsert_buffer_substring
...
...
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