diff options
author | Eli Zaretskii <eliz@gnu.org> | 2024-05-26 09:49:52 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2024-05-26 09:49:52 +0300 |
commit | 21b2954c90eb5b6fa1bbfeda4c5074a0bdc53ba8 (patch) | |
tree | bcd8157351114bb5d77ef3bb1a33643122049544 | |
parent | 4f0121f8dbe2ca0ec8fe2831353f01782e5e6b9d (diff) | |
download | emacs-21b2954c90eb5b6fa1bbfeda4c5074a0bdc53ba8.tar.gz emacs-21b2954c90eb5b6fa1bbfeda4c5074a0bdc53ba8.tar.bz2 emacs-21b2954c90eb5b6fa1bbfeda4c5074a0bdc53ba8.zip |
; Fix markup in manuals
* doc/emacs/files.texi (Visiting):
* doc/lispref/processes.texi (Filter Functions, Sentinels): Fix
markup and punctuation. Reported by Andrés Ramírez
<rrandresf@hotmail.com>.
-rw-r--r-- | doc/emacs/files.texi | 12 | ||||
-rw-r--r-- | doc/lispref/processes.texi | 4 |
2 files changed, 8 insertions, 8 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 diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index e3eee3d0719..9ad44a55dd1 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi @@ -1762,7 +1762,7 @@ program was running when the filter function was started. However, if This makes it possible to use the Lisp debugger to debug filter functions. @xref{Debugger}. If an error is caught, Emacs pauses for @code{process-error-pause-time} seconds so that the user sees the -error. @xref{Asynchronous Processes} +error. @xref{Asynchronous Processes}. Many filter functions sometimes (or always) insert the output in the process's buffer, mimicking the actions of the default filter. @@ -2168,7 +2168,7 @@ programs was running when the sentinel was started. However, if This makes it possible to use the Lisp debugger to debug the sentinel. @xref{Debugger}. If an error is caught, Emacs pauses for @code{process-error-pause-time} seconds so that the user sees the -error. @xref{Asynchronous Processes} +error. @xref{Asynchronous Processes}. While a sentinel is running, the process sentinel is temporarily set to @code{nil} so that the sentinel won't run recursively. |