Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fe4254e

Browse files
committed
warn about bacslash-s lacking
1 parent 9c3241d commit fe4254e

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

Doc/lib/libregex.tex

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ \section{Built-in Module \sectcode{regex}}
44
This module provides regular expression matching operations similar to
55
those found in Emacs. It is always available.
66

7-
By default the patterns are Emacs-style regular expressions; there is
7+
By default the patterns are Emacs-style regular expressions,
8+
with one exception. There is
89
a way to change the syntax to match that of several well-known
9-
\UNIX{} utilities.
10+
\UNIX{} utilities. The exception is that Emacs' \samp{\e s}
11+
pattern is not supported, since the original implementation references
12+
the Emacs syntax tables.
1013

1114
This module is 8-bit clean: both patterns and strings may contain null
1215
bytes and characters whose high bit is set.

Doc/libregex.tex

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ \section{Built-in Module \sectcode{regex}}
44
This module provides regular expression matching operations similar to
55
those found in Emacs. It is always available.
66

7-
By default the patterns are Emacs-style regular expressions; there is
7+
By default the patterns are Emacs-style regular expressions,
8+
with one exception. There is
89
a way to change the syntax to match that of several well-known
9-
\UNIX{} utilities.
10+
\UNIX{} utilities. The exception is that Emacs' \samp{\e s}
11+
pattern is not supported, since the original implementation references
12+
the Emacs syntax tables.
1013

1114
This module is 8-bit clean: both patterns and strings may contain null
1215
bytes and characters whose high bit is set.

0 commit comments

Comments
 (0)