diff options
| author | Kenichi Handa | 1997-08-26 11:42:33 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1997-08-26 11:42:33 +0000 |
| commit | 6af439748536834b17413a8c8ca3dc727a4b70ad (patch) | |
| tree | d690a3d78fe6d3fc8e2f80b60584d845080a04e1 /src | |
| parent | 35c5f181c75a1fef88e7070e70b189cb9c4de760 (diff) | |
| download | emacs-6af439748536834b17413a8c8ca3dc727a4b70ad.tar.gz emacs-6af439748536834b17413a8c8ca3dc727a4b70ad.zip | |
(Fsearch_backward): Inherit the current input method on
reading STRING.
(Fsearch_forward): Likewise.
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\ |