diff options
| author | Richard M. Stallman | 1992-05-08 06:55:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1992-05-08 06:55:33 +0000 |
| commit | fe99283db44fbc7d0df98bd407441ec225ca1f47 (patch) | |
| tree | a3820efb88271cc3b30201990806ebf3f5393825 | |
| parent | cecf0f21e15126db3afaeca4baf608b1bf413a10 (diff) | |
| download | emacs-fe99283db44fbc7d0df98bd407441ec225ca1f47.tar.gz emacs-fe99283db44fbc7d0df98bd407441ec225ca1f47.zip | |
*** empty log message ***
| -rw-r--r-- | src/search.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c index 46ff1ec7e77..886f93f41c0 100644 --- a/src/search.c +++ b/src/search.c | |||
| @@ -111,7 +111,11 @@ signal_failure (arg) | |||
| 111 | } | 111 | } |
| 112 | 112 | ||
| 113 | DEFUN ("looking-at", Flooking_at, Slooking_at, 1, 1, 0, | 113 | DEFUN ("looking-at", Flooking_at, Slooking_at, 1, 1, 0, |
| 114 | "Return t if text after point matches regular expression PAT.") | 114 | "Return t if text after point matches regular expression PAT. |
| 115 | This function modifies the match data that `match-beginning', | ||
| 116 | `match-end' and `match-data' access; save and restore the match | ||
| 117 | data if you want to preserve them.") | ||
| 118 | ") | ||
| 115 | (string) | 119 | (string) |
| 116 | Lisp_Object string; | 120 | Lisp_Object string; |
| 117 | { | 121 | { |