diff options
Diffstat (limited to 'doc/emacs/files.texi')
-rw-r--r-- | doc/emacs/files.texi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi index 01d22564f2e..a3fa138e36d 100644 --- a/doc/emacs/files.texi +++ b/doc/emacs/files.texi @@ -372,12 +372,12 @@ you could say: '(("src/emacs/[^/]+/\\(.*\\)\\'" "src/emacs/.*/\\1"))) @end lisp -As you can see, this is a list of @var{(MATCH EXPANSION...)} elements. -The @var{match} is a regular expression that matches the visited file -name, and each @var{expansion} may refer to match groups by using -@samp{\\1} and so on. The resulting expansion string is then applied -to the file system to see if any files match this expansion -(interpreted as a regexp). +As you can see, this is a list of elements of the form +@w{@code{(@var{MATCH} @var{expansion}@dots{})}}. The @var{match} is a +regular expression that matches the visited file name, and each +@var{expansion} may refer to match groups by using @samp{\\1} and so +on. The resulting expansion string is then applied to the file system +to see if any files match this expansion (interpreted as a regexp). @vindex find-file-hook @vindex find-file-not-found-functions |