]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/regex.h (re_match_object): Improve commentary.
authorEli Zaretskii <eliz@gnu.org>
Wed, 19 Oct 2016 14:31:47 +0000 (17:31 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 19 Oct 2016 14:31:47 +0000 (17:31 +0300)
src/regex.h

index 817167a07cad9038d969f8ce1312c03101b80d2c..51f4424ce94fafc41b0d0602e9531dcdec698ef7 100644 (file)
@@ -168,8 +168,12 @@ extern reg_syntax_t re_syntax_options;
 
 #ifdef emacs
 # include "lisp.h"
-/* In Emacs, this is the string or buffer in which we
-   are matching.  It is used for looking up syntax properties.  */
+/* In Emacs, this is the string or buffer in which we are matching.
+   It is used for looking up syntax properties.
+
+   If the value is a Lisp string object, we are matching text in that
+   string; if it's nil, we are matching text in the current buffer; if
+   it's t, we are matching text in a C string.  */
 extern Lisp_Object re_match_object;
 #endif