aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2016-10-19 17:31:47 +0300
committerEli Zaretskii2016-10-19 17:31:47 +0300
commitb6998eab37962357fda49a6a3b013c73228af187 (patch)
tree5a845bb38b8069890ea9808e25fd2dc585b8913a /src
parentdfd047666bcb2179652aee80248471a6efec06fc (diff)
downloademacs-b6998eab37962357fda49a6a3b013c73228af187.tar.gz
emacs-b6998eab37962357fda49a6a3b013c73228af187.zip
* src/regex.h (re_match_object): Improve commentary.
Diffstat (limited to 'src')
-rw-r--r--src/regex.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/regex.h b/src/regex.h
index 817167a07ca..51f4424ce94 100644
--- a/src/regex.h
+++ b/src/regex.h
@@ -168,8 +168,12 @@ extern reg_syntax_t re_syntax_options;
168 168
169#ifdef emacs 169#ifdef emacs
170# include "lisp.h" 170# include "lisp.h"
171/* In Emacs, this is the string or buffer in which we 171/* In Emacs, this is the string or buffer in which we are matching.
172 are matching. It is used for looking up syntax properties. */ 172 It is used for looking up syntax properties.
173
174 If the value is a Lisp string object, we are matching text in that
175 string; if it's nil, we are matching text in the current buffer; if
176 it's t, we are matching text in a C string. */
173extern Lisp_Object re_match_object; 177extern Lisp_Object re_match_object;
174#endif 178#endif
175 179