1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

* src/regex.h (re_match_object): Improve commentary.

This commit is contained in:
Eli Zaretskii 2016-10-19 17:31:47 +03:00
parent dfd047666b
commit b6998eab37

View 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