diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/search.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search.c b/src/search.c index 6ac8ef21e6c..9a356c05ebc 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -1254,7 +1254,7 @@ wordify (string) | |||
| 1254 | } | 1254 | } |
| 1255 | 1255 | ||
| 1256 | DEFUN ("search-backward", Fsearch_backward, Ssearch_backward, 1, 4, | 1256 | DEFUN ("search-backward", Fsearch_backward, Ssearch_backward, 1, 4, |
| 1257 | "sSearch backward: ", | 1257 | "MSearch backward: ", |
| 1258 | "Search backward from point for STRING.\n\ | 1258 | "Search backward from point for STRING.\n\ |
| 1259 | Set point to the beginning of the occurrence found, and return point.\n\ | 1259 | Set point to the beginning of the occurrence found, and return point.\n\ |
| 1260 | An optional second argument bounds the search; it is a buffer position.\n\ | 1260 | An optional second argument bounds the search; it is a buffer position.\n\ |
| @@ -1269,7 +1269,7 @@ See also the functions `match-beginning', `match-end' and `replace-match'.") | |||
| 1269 | return search_command (string, bound, noerror, count, -1, 0, 0); | 1269 | return search_command (string, bound, noerror, count, -1, 0, 0); |
| 1270 | } | 1270 | } |
| 1271 | 1271 | ||
| 1272 | DEFUN ("search-forward", Fsearch_forward, Ssearch_forward, 1, 4, "sSearch: ", | 1272 | DEFUN ("search-forward", Fsearch_forward, Ssearch_forward, 1, 4, "MSearch: ", |
| 1273 | "Search forward from point for STRING.\n\ | 1273 | "Search forward from point for STRING.\n\ |
| 1274 | Set point to the end of the occurrence found, and return point.\n\ | 1274 | Set point to the end of the occurrence found, and return point.\n\ |
| 1275 | An optional second argument bounds the search; it is a buffer position.\n\ | 1275 | An optional second argument bounds the search; it is a buffer position.\n\ |