]> git.eshelyaron.com Git - emacs.git/commitdiff
Correct invalid Texinfo markup
authorPo Lu <luangruo@yahoo.com>
Tue, 22 Aug 2023 02:01:22 +0000 (10:01 +0800)
committerPo Lu <luangruo@yahoo.com>
Tue, 22 Aug 2023 02:01:22 +0000 (10:01 +0800)
* doc/emacs/files.texi (Visiting): Don't enclose an entire form
within @var, use @code for the whole form and @var for
individual variables within instead.

* doc/lispref/commands.texi (Key Sequence Input): @xref must be
followed by either , or ..

* doc/lispref/processes.texi (Filter Functions): Introduce
punctuation absent from the last sentence of a paragraph.

doc/emacs/files.texi
doc/lispref/commands.texi
doc/lispref/processes.texi

index ac7751ceb53d1858e558478d923d737569abafd1..7efb4516d1565db785238e0796b900d8d9a97cd6 100644 (file)
@@ -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 @w{@code{(@var{MATCH}
+@var{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).
 
 @vindex find-file-hook
 @vindex find-file-not-found-functions
index ca038ca5919373f2d4af8f36b0c047a775440f06..78fc43d0daf89b5b67f2b47aafbb5de0383b5795 100644 (file)
@@ -3284,7 +3284,7 @@ one key sequence.
 The argument @var{disable-text-conversion}, if non-@code{nil}, means
 that system input methods will not directly perform edits to buffer
 text while this key sequence is being read; user input will always
-generated individual key events instead.  @xref{Misc Events} for more
+generated individual key events instead.  @xref{Misc Events}, for more
 about text conversion.
 
 In the following example, Emacs displays the prompt @samp{?} in the
index adab9eb0d0c21fc7e87de4bbb26d259a2a731390..799a9e19722a77d825ae2d6089124d5c09f9aa49 100644 (file)
@@ -1775,7 +1775,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.