comparison src/search.c @ 638:40b255f55df3

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Sun, 10 May 1992 18:15:10 +0000
parents 197f38dd0105
children 96378799b3f7
comparison
equal deleted inserted replaced
637:639afe138172 638:40b255f55df3
109 Fsignal (Qsearch_failed, Fcons (arg, Qnil)); 109 Fsignal (Qsearch_failed, Fcons (arg, Qnil));
110 return Qnil; 110 return Qnil;
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.\n\
115 This function modifies the match data that `match-beginning', 115 This function modifies the match data that `match-beginning',\n\
116 `match-end' and `match-data' access; save and restore the match 116 `match-end' and `match-data' access; save and restore the match\n\
117 data if you want to preserve them.") 117 data if you want to preserve them.")
118 ") 118 "Return t if text after point matches regular expression PAT.")
119 (string) 119 (string)
120 Lisp_Object string; 120 Lisp_Object string;
121 { 121 {
122 Lisp_Object val; 122 Lisp_Object val;
123 unsigned char *p1, *p2; 123 unsigned char *p1, *p2;