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
d7a5ad5f
Commit
d7a5ad5f
authored
Aug 08, 1995
by
Richard M. Stallman
Browse files
(Freplace_match): New arg SUBEXP.
parent
fab2e906
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
26 deletions
+42
-26
src/search.c
src/search.c
+42
-26
No files found.
src/search.c
View file @
d7a5ad5f
...
...
@@ -1501,7 +1501,7 @@ See also the functions `match-beginning', `match-end' and `replace-match'.")
return
search_command
(
regexp
,
bound
,
noerror
,
count
,
1
,
1
,
1
);
}
DEFUN
(
"replace-match"
,
Freplace_match
,
Sreplace_match
,
1
,
4
,
0
,
DEFUN
(
"replace-match"
,
Freplace_match
,
Sreplace_match
,
1
,
5
,
0
,
"Replace text matched by last search with NEWTEXT.
\n
\
If second arg FIXEDCASE is non-nil, do not alter case of replacement text.
\n
\
Otherwise maybe capitalize the whole text, or maybe just word initials,
\n
\
...
...
@@ -1521,9 +1521,14 @@ Leaves point at end of replacement text.\n\
\n
\
The optional fourth argument STRING can be a string to modify.
\n
\
In that case, this function creates and returns a new string
\n
\
which is made by replacing the part of STRING that was matched."
)
(
newtext
,
fixedcase
,
literal
,
string
)
Lisp_Object
newtext
,
fixedcase
,
literal
,
string
;
which is made by replacing the part of STRING that was matched.
\n
\
\n
\
The optional fifth argument SUBEXP specifies a subexpression of the match.
\n
\
It says to replace just that subexpression instead of the whole match.
\n
\
This is useful only after a regular expression search or match
\n
\
since only regular expressions have distinguished subexpressions."
)
(
newtext
,
fixedcase
,
literal
,
string
,
subexp
)
Lisp_Object
newtext
,
fixedcase
,
literal
,
string
,
subexp
;
{
enum
{
nochange
,
all_caps
,
cap_initial
}
case_action
;
register
int
pos
,
last
;
...
...
@@ -1533,6 +1538,7 @@ which is made by replacing the part of STRING that was matched.")
int
some_nonuppercase_initial
;
register
int
c
,
prevc
;
int
inslen
;
int
sub
;
CHECK_STRING
(
newtext
,
0
);
...
...
@@ -1545,28 +1551,38 @@ which is made by replacing the part of STRING that was matched.")
if
(
search_regs
.
num_regs
<=
0
)
error
(
"replace-match called before any match found"
);
if
(
NILP
(
subexp
))
sub
=
0
;
else
{
CHECK_NUMBER
(
subexp
,
3
);
sub
=
XINT
(
subexp
);
if
(
sub
<
0
||
sub
>=
search_regs
.
num_regs
)
args_out_of_range
(
subexp
,
make_number
(
search_regs
.
num_regs
));
}
if
(
NILP
(
string
))
{
if
(
search_regs
.
start
[
0
]
<
BEGV
||
search_regs
.
start
[
0
]
>
search_regs
.
end
[
0
]
||
search_regs
.
end
[
0
]
>
ZV
)
args_out_of_range
(
make_number
(
search_regs
.
start
[
0
]),
make_number
(
search_regs
.
end
[
0
]));
if
(
search_regs
.
start
[
sub
]
<
BEGV
||
search_regs
.
start
[
sub
]
>
search_regs
.
end
[
sub
]
||
search_regs
.
end
[
sub
]
>
ZV
)
args_out_of_range
(
make_number
(
search_regs
.
start
[
sub
]),
make_number
(
search_regs
.
end
[
sub
]));
}
else
{
if
(
search_regs
.
start
[
0
]
<
0
||
search_regs
.
start
[
0
]
>
search_regs
.
end
[
0
]
||
search_regs
.
end
[
0
]
>
XSTRING
(
string
)
->
size
)
args_out_of_range
(
make_number
(
search_regs
.
start
[
0
]),
make_number
(
search_regs
.
end
[
0
]));
if
(
search_regs
.
start
[
sub
]
<
0
||
search_regs
.
start
[
sub
]
>
search_regs
.
end
[
sub
]
||
search_regs
.
end
[
sub
]
>
XSTRING
(
string
)
->
size
)
args_out_of_range
(
make_number
(
search_regs
.
start
[
sub
]),
make_number
(
search_regs
.
end
[
sub
]));
}
if
(
NILP
(
fixedcase
))
{
/* Decide how to casify by examining the matched text. */
last
=
search_regs
.
end
[
0
];
last
=
search_regs
.
end
[
sub
];
prevc
=
'\n'
;
case_action
=
all_caps
;
...
...
@@ -1577,7 +1593,7 @@ which is made by replacing the part of STRING that was matched.")
some_nonuppercase_initial
=
0
;
some_uppercase
=
0
;
for
(
pos
=
search_regs
.
start
[
0
];
pos
<
last
;
pos
++
)
for
(
pos
=
search_regs
.
start
[
sub
];
pos
<
last
;
pos
++
)
{
if
(
NILP
(
string
))
c
=
FETCH_CHAR
(
pos
);
...
...
@@ -1634,8 +1650,8 @@ which is made by replacing the part of STRING that was matched.")
Lisp_Object
before
,
after
;
before
=
Fsubstring
(
string
,
make_number
(
0
),
make_number
(
search_regs
.
start
[
0
]));
after
=
Fsubstring
(
string
,
make_number
(
search_regs
.
end
[
0
]),
Qnil
);
make_number
(
search_regs
.
start
[
sub
]));
after
=
Fsubstring
(
string
,
make_number
(
search_regs
.
end
[
sub
]),
Qnil
);
/* Do case substitution into NEWTEXT if desired. */
if
(
NILP
(
literal
))
...
...
@@ -1659,8 +1675,8 @@ which is made by replacing the part of STRING that was matched.")
c
=
XSTRING
(
newtext
)
->
data
[
++
pos
];
if
(
c
==
'&'
)
{
substart
=
search_regs
.
start
[
0
];
subend
=
search_regs
.
end
[
0
];
substart
=
search_regs
.
start
[
sub
];
subend
=
search_regs
.
end
[
sub
];
}
else
if
(
c
>=
'1'
&&
c
<=
'9'
&&
c
<=
search_regs
.
num_regs
+
'0'
)
{
...
...
@@ -1716,7 +1732,7 @@ which is made by replacing the part of STRING that was matched.")
delete the original text. This means that markers at the
beginning or end of the original will float to the corresponding
position in the replacement. */
SET_PT
(
search_regs
.
start
[
0
]);
SET_PT
(
search_regs
.
start
[
sub
]);
if
(
!
NILP
(
literal
))
Finsert_and_inherit
(
1
,
&
newtext
);
else
...
...
@@ -1726,7 +1742,7 @@ which is made by replacing the part of STRING that was matched.")
for
(
pos
=
0
;
pos
<
XSTRING
(
newtext
)
->
size
;
pos
++
)
{
int
offset
=
point
-
search_regs
.
start
[
0
];
int
offset
=
point
-
search_regs
.
start
[
sub
];
c
=
XSTRING
(
newtext
)
->
data
[
pos
];
if
(
c
==
'\\'
)
...
...
@@ -1735,8 +1751,8 @@ which is made by replacing the part of STRING that was matched.")
if
(
c
==
'&'
)
Finsert_buffer_substring
(
Fcurrent_buffer
(),
make_number
(
search_regs
.
start
[
0
]
+
offset
),
make_number
(
search_regs
.
end
[
0
]
+
offset
));
make_number
(
search_regs
.
start
[
sub
]
+
offset
),
make_number
(
search_regs
.
end
[
sub
]
+
offset
));
else
if
(
c
>=
'1'
&&
c
<=
'9'
&&
c
<=
search_regs
.
num_regs
+
'0'
)
{
if
(
search_regs
.
start
[
c
-
'0'
]
>=
1
)
...
...
@@ -1754,8 +1770,8 @@ which is made by replacing the part of STRING that was matched.")
UNGCPRO
;
}
inslen
=
point
-
(
search_regs
.
start
[
0
]);
del_range
(
search_regs
.
start
[
0
]
+
inslen
,
search_regs
.
end
[
0
]
+
inslen
);
inslen
=
point
-
(
search_regs
.
start
[
sub
]);
del_range
(
search_regs
.
start
[
sub
]
+
inslen
,
search_regs
.
end
[
sub
]
+
inslen
);
if
(
case_action
==
all_caps
)
Fupcase_region
(
make_number
(
point
-
inslen
),
make_number
(
point
));
...
...
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