diff options
| author | Basil L. Contovounesios | 2020-06-17 12:53:40 +0100 |
|---|---|---|
| committer | Basil L. Contovounesios | 2020-06-17 13:07:51 +0100 |
| commit | 229995ba2cd9f6d0a749a38c106cbfbfd04119a8 (patch) | |
| tree | f6316dae413931d8c46537646c527b9c4864a5b6 | |
| parent | 01e86b9fdf9858ca6b491a247dffcb2fcada5728 (diff) | |
| download | emacs-229995ba2cd9f6d0a749a38c106cbfbfd04119a8.tar.gz emacs-229995ba2cd9f6d0a749a38c106cbfbfd04119a8.zip | |
Fix some Texinfo markup
* doc/misc/gnus-faq.texi (FAQ 3-11):
* doc/emacs/frames.texi (Tab Bars): Consistently use @var with
lower-case metasyntactic variables and @minus instead of a dash.
(Text-Only Mouse):
* doc/emacs/files.texi (Auto Revert):
* doc/emacs/misc.texi (emacsclient Options)
(Embedded WebKit Widgets):
* doc/lispref/control.texi (pcase Macro):
* doc/lispref/debugging.texi (Backtraces):
* doc/lispref/files.texi (Truenames):
* doc/lispref/frames.texi (Management Parameters):
* doc/lispref/os.texi (Time Calculations):
* doc/lispref/text.texi (Parsing JSON):
* doc/misc/efaq-w32.texi (Other versions of Emacs, Debugging)
(Swap Caps NT, Printing, Bash, Developing with Emacs):
* doc/misc/efaq.texi (New in Emacs 25):
* doc/misc/emacs-gnutls.texi (Help For Users):
* doc/misc/message.texi (Using S/MIME, Passphrase caching):
* test/manual/etags/tex-src/gzip.texi (Overview): Use @. when a
sentence in the middle of a paragraph ends with an upper-case letter
as per "(texinfo) Ending a Sentence".
| -rw-r--r-- | doc/emacs/files.texi | 2 | ||||
| -rw-r--r-- | doc/emacs/frames.texi | 21 | ||||
| -rw-r--r-- | doc/emacs/misc.texi | 6 | ||||
| -rw-r--r-- | doc/lispref/control.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/debugging.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/files.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/frames.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/os.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/text.texi | 2 | ||||
| -rw-r--r-- | doc/misc/efaq-w32.texi | 14 | ||||
| -rw-r--r-- | doc/misc/efaq.texi | 2 | ||||
| -rw-r--r-- | doc/misc/emacs-gnutls.texi | 2 | ||||
| -rw-r--r-- | doc/misc/gnus-faq.texi | 5 | ||||
| -rw-r--r-- | doc/misc/message.texi | 4 | ||||
| -rw-r--r-- | test/manual/etags/tex-src/gzip.texi | 2 |
15 files changed, 36 insertions, 34 deletions
diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi index b95203b1f44..5998326ffef 100644 --- a/doc/emacs/files.texi +++ b/doc/emacs/files.texi | |||
| @@ -1003,7 +1003,7 @@ variable @code{auto-revert-remote-files} to non-@code{nil}. | |||
| 1003 | @vindex auto-revert-use-notify | 1003 | @vindex auto-revert-use-notify |
| 1004 | @vindex auto-revert-interval | 1004 | @vindex auto-revert-interval |
| 1005 | By default, Auto Revert mode works using @dfn{file notifications}, | 1005 | By default, Auto Revert mode works using @dfn{file notifications}, |
| 1006 | whereby changes in the filesystem are reported to Emacs by the OS. | 1006 | whereby changes in the filesystem are reported to Emacs by the OS@. |
| 1007 | You can disable use of file notifications by customizing the variable | 1007 | You can disable use of file notifications by customizing the variable |
| 1008 | @code{auto-revert-use-notify} to a @code{nil} value, then Emacs will | 1008 | @code{auto-revert-use-notify} to a @code{nil} value, then Emacs will |
| 1009 | check for file changes by polling every five seconds. You can change | 1009 | check for file changes by polling every five seconds. You can change |
diff --git a/doc/emacs/frames.texi b/doc/emacs/frames.texi index 8f448e1aedc..e0eabe38d06 100644 --- a/doc/emacs/frames.texi +++ b/doc/emacs/frames.texi | |||
| @@ -1362,15 +1362,16 @@ a recently used tab. | |||
| 1362 | @findex tab-next | 1362 | @findex tab-next |
| 1363 | Switch to the next tab. If you repeat this command, it cycles through | 1363 | Switch to the next tab. If you repeat this command, it cycles through |
| 1364 | all the tabs on the selected frame. With a positive numeric argument | 1364 | all the tabs on the selected frame. With a positive numeric argument |
| 1365 | N, it switches to the next Nth tab; with a negative argument −N, it | 1365 | @var{n}, it switches to the next @var{n}th tab; with a negative |
| 1366 | switches back to the previous Nth tab. | 1366 | argument @minus{}@var{n}, it switches back to the previous @var{n}th |
| 1367 | tab. | ||
| 1367 | 1368 | ||
| 1368 | @item S-C-@key{TAB} | 1369 | @item S-C-@key{TAB} |
| 1369 | @kindex S-C-TAB | 1370 | @kindex S-C-TAB |
| 1370 | @findex tab-previous | 1371 | @findex tab-previous |
| 1371 | Switch to the previous tab. With a positive numeric argument N, it | 1372 | Switch to the previous tab. With a positive numeric argument @var{n}, |
| 1372 | switches to the previous Nth tab; with a negative argument −N, it | 1373 | it switches to the previous @var{n}th tab; with a negative argument |
| 1373 | switches back to the next Nth tab. | 1374 | @minus{}@var{n}, it switches back to the next @var{n}th tab. |
| 1374 | 1375 | ||
| 1375 | @item C-x t @key{RET} @var{tabname} @key{RET} | 1376 | @item C-x t @key{RET} @var{tabname} @key{RET} |
| 1376 | Switch to the tab by its name, with completion on all tab names. | 1377 | Switch to the tab by its name, with completion on all tab names. |
| @@ -1392,7 +1393,7 @@ to select the tab by its number. | |||
| 1392 | @findex tab-recent | 1393 | @findex tab-recent |
| 1393 | Switch to the recent tab. The key combination is the modifier key | 1394 | Switch to the recent tab. The key combination is the modifier key |
| 1394 | defined by @code{tab-bar-select-tab-modifiers} and the key @kbd{0}. | 1395 | defined by @code{tab-bar-select-tab-modifiers} and the key @kbd{0}. |
| 1395 | With a numeric argument N, switch to the Nth recent tab. | 1396 | With a numeric argument @var{n}, switch to the @var{n}th recent tab. |
| 1396 | @end table | 1397 | @end table |
| 1397 | 1398 | ||
| 1398 | The following commands can be used to operate on tabs: | 1399 | The following commands can be used to operate on tabs: |
| @@ -1406,9 +1407,9 @@ variable @code{tab-bar-tab-name-function}. | |||
| 1406 | 1407 | ||
| 1407 | @item C-x t m | 1408 | @item C-x t m |
| 1408 | @findex tab-move | 1409 | @findex tab-move |
| 1409 | Move the current tab N positions to the right with a positive numeric | 1410 | Move the current tab @var{n} positions to the right with a positive |
| 1410 | argument N. With a negative argument −N, move the current tab | 1411 | numeric argument @var{n}. With a negative argument @minus{}@var{n}, |
| 1411 | N positions to the left. | 1412 | move the current tab @var{n} positions to the left. |
| 1412 | @end table | 1413 | @end table |
| 1413 | 1414 | ||
| 1414 | @findex tab-bar-history-mode | 1415 | @findex tab-bar-history-mode |
| @@ -1621,7 +1622,7 @@ again. | |||
| 1621 | enable mouse support. You must have the gpm server installed and | 1622 | enable mouse support. You must have the gpm server installed and |
| 1622 | running on your system in order for this to work. Note that when | 1623 | running on your system in order for this to work. Note that when |
| 1623 | this mode is enabled, you cannot use the mouse to transfer text | 1624 | this mode is enabled, you cannot use the mouse to transfer text |
| 1624 | between Emacs and other programs which use GPM. This is due to | 1625 | between Emacs and other programs which use GPM@. This is due to |
| 1625 | limitations in GPM and the Linux kernel. | 1626 | limitations in GPM and the Linux kernel. |
| 1626 | 1627 | ||
| 1627 | @iftex | 1628 | @iftex |
diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi index 47f195d0b20..2f02c702512 100644 --- a/doc/emacs/misc.texi +++ b/doc/emacs/misc.texi | |||
| @@ -1968,12 +1968,12 @@ evaluate, @emph{not} as a list of files to visit. | |||
| 1968 | @item -f @var{server-file} | 1968 | @item -f @var{server-file} |
| 1969 | @itemx --server-file=@var{server-file} | 1969 | @itemx --server-file=@var{server-file} |
| 1970 | Specify a server file (@pxref{TCP Emacs server}) for connecting to an | 1970 | Specify a server file (@pxref{TCP Emacs server}) for connecting to an |
| 1971 | Emacs server via TCP. Alternatively, you can set the | 1971 | Emacs server via TCP@. Alternatively, you can set the |
| 1972 | @env{EMACS_SERVER_FILE} environment variable to point to the server | 1972 | @env{EMACS_SERVER_FILE} environment variable to point to the server |
| 1973 | file. (The command-line option overrides the environment variable.) | 1973 | file. (The command-line option overrides the environment variable.) |
| 1974 | 1974 | ||
| 1975 | An Emacs server usually uses a local socket to listen for connections, | 1975 | An Emacs server usually uses a local socket to listen for connections, |
| 1976 | but also supports connections over TCP. To connect to a TCP Emacs | 1976 | but also supports connections over TCP@. To connect to a TCP Emacs |
| 1977 | server, @command{emacsclient} needs to read a @dfn{server file} | 1977 | server, @command{emacsclient} needs to read a @dfn{server file} |
| 1978 | containing the connection details of the Emacs server. The name of | 1978 | containing the connection details of the Emacs server. The name of |
| 1979 | this file is specified with this option, either as a file name | 1979 | this file is specified with this option, either as a file name |
| @@ -2882,7 +2882,7 @@ widget. The URL normally defaults to the URL at or before point, but | |||
| 2882 | if there is an active region (@pxref{Mark}), the default URL comes | 2882 | if there is an active region (@pxref{Mark}), the default URL comes |
| 2883 | from the region instead, after removing any whitespace from it. The | 2883 | from the region instead, after removing any whitespace from it. The |
| 2884 | command then creates a new buffer with the embedded browser showing | 2884 | command then creates a new buffer with the embedded browser showing |
| 2885 | the specified URL. The buffer is put in the Xwidget-WebKit mode | 2885 | the specified URL@. The buffer is put in the Xwidget-WebKit mode |
| 2886 | (similar to Image mode, @pxref{Image Mode}), which provides | 2886 | (similar to Image mode, @pxref{Image Mode}), which provides |
| 2887 | one-key commands for scrolling the widget, changing its size, and | 2887 | one-key commands for scrolling the widget, changing its size, and |
| 2888 | reloading it. Type @w{@kbd{C-h b}} in that buffer to see the key | 2888 | reloading it. Type @w{@kbd{C-h b}} in that buffer to see the key |
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi index 58f93366fe9..01ae94ea7dd 100644 --- a/doc/lispref/control.texi +++ b/doc/lispref/control.texi | |||
| @@ -835,7 +835,7 @@ the second and subsequent occurrences do not expand to re-binding, | |||
| 835 | but instead expand to an equality test using @code{eq}. | 835 | but instead expand to an equality test using @code{eq}. |
| 836 | 836 | ||
| 837 | The following example features a @code{pcase} form | 837 | The following example features a @code{pcase} form |
| 838 | with two clauses and two @var{seqpat}, A and B. | 838 | with two clauses and two @var{seqpat}, A and B@. |
| 839 | Both A and B first check that @var{expval} is a | 839 | Both A and B first check that @var{expval} is a |
| 840 | pair (using @code{pred}), | 840 | pair (using @code{pred}), |
| 841 | and then bind symbols to the @code{car} and @code{cdr} | 841 | and then bind symbols to the @code{car} and @code{cdr} |
diff --git a/doc/lispref/debugging.texi b/doc/lispref/debugging.texi index 24ec656028f..29a0ab71ea4 100644 --- a/doc/lispref/debugging.texi +++ b/doc/lispref/debugging.texi | |||
| @@ -402,7 +402,7 @@ assumptions are false if the debugger is running interpreted. | |||
| 402 | @cindex backtrace buffer | 402 | @cindex backtrace buffer |
| 403 | 403 | ||
| 404 | Debugger mode is derived from Backtrace mode, which is also used to | 404 | Debugger mode is derived from Backtrace mode, which is also used to |
| 405 | show backtraces by Edebug and ERT. (@pxref{Edebug}, and @ref{Top,the | 405 | show backtraces by Edebug and ERT@. (@pxref{Edebug}, and @ref{Top,the |
| 406 | ERT manual,, ert, ERT: Emacs Lisp Regression Testing}.) | 406 | ERT manual,, ert, ERT: Emacs Lisp Regression Testing}.) |
| 407 | 407 | ||
| 408 | @cindex stack frame | 408 | @cindex stack frame |
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index bdda59f415d..6ca2834fbd4 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi | |||
| @@ -1190,7 +1190,7 @@ inconclusive, the function returns @code{t} on Cygwin and @code{nil} | |||
| 1190 | on macOS. | 1190 | on macOS. |
| 1191 | 1191 | ||
| 1192 | Currently this function always returns @code{nil} on platforms other | 1192 | Currently this function always returns @code{nil} on platforms other |
| 1193 | than MS-DOS, MS-Windows, Cygwin, and macOS. It does not detect | 1193 | than MS-DOS, MS-Windows, Cygwin, and macOS@. It does not detect |
| 1194 | case-insensitivity of mounted filesystems, such as Samba shares or | 1194 | case-insensitivity of mounted filesystems, such as Samba shares or |
| 1195 | NFS-mounted Windows volumes. On remote hosts, it assumes @code{t} for | 1195 | NFS-mounted Windows volumes. On remote hosts, it assumes @code{t} for |
| 1196 | the @samp{smb} method. For all other connection methods, runtime | 1196 | the @samp{smb} method. For all other connection methods, runtime |
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi index 26546ab0964..7b37472f133 100644 --- a/doc/lispref/frames.texi +++ b/doc/lispref/frames.texi | |||
| @@ -2173,7 +2173,7 @@ it on an undecorated frame. | |||
| 2173 | @item override-redirect | 2173 | @item override-redirect |
| 2174 | @cindex override redirect frames | 2174 | @cindex override redirect frames |
| 2175 | If non-@code{nil}, this means that this is an @dfn{override redirect} | 2175 | If non-@code{nil}, this means that this is an @dfn{override redirect} |
| 2176 | frame---a frame not handled by window managers under X. Override | 2176 | frame---a frame not handled by window managers under X@. Override |
| 2177 | redirect frames have no window manager decorations, can be positioned | 2177 | redirect frames have no window manager decorations, can be positioned |
| 2178 | and resized only via Emacs' positioning and resizing functions and are | 2178 | and resized only via Emacs' positioning and resizing functions and are |
| 2179 | usually drawn on top of all other frames. Setting this parameter has | 2179 | usually drawn on top of all other frames. Setting this parameter has |
diff --git a/doc/lispref/os.texi b/doc/lispref/os.texi index d600916d985..1c3be1c7ef6 100644 --- a/doc/lispref/os.texi +++ b/doc/lispref/os.texi | |||
| @@ -1988,7 +1988,7 @@ The result is @code{nil} if either argument is a NaN. | |||
| 1988 | This returns the time difference @var{t1} @minus{} @var{t2} between | 1988 | This returns the time difference @var{t1} @minus{} @var{t2} between |
| 1989 | two time values, as a Lisp time value. The result is exact and its clock | 1989 | two time values, as a Lisp time value. The result is exact and its clock |
| 1990 | resolution is no worse than the worse of its two arguments' resolutions. | 1990 | resolution is no worse than the worse of its two arguments' resolutions. |
| 1991 | The result is floating-point only if it is infinite or a NaN. | 1991 | The result is floating-point only if it is infinite or a NaN@. |
| 1992 | If you need the difference in units | 1992 | If you need the difference in units |
| 1993 | of elapsed seconds, you can convert it with @code{time-convert} or | 1993 | of elapsed seconds, you can convert it with @code{time-convert} or |
| 1994 | @code{float-time}. @xref{Time Conversion}. | 1994 | @code{float-time}. @xref{Time Conversion}. |
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi index 0bbb0aa8dc0..5d83e7bd6cc 100644 --- a/doc/lispref/text.texi +++ b/doc/lispref/text.texi | |||
| @@ -5216,7 +5216,7 @@ Signaled when encountering invalid JSON syntax. | |||
| 5216 | @end table | 5216 | @end table |
| 5217 | 5217 | ||
| 5218 | Only top-level values (arrays and objects) can be serialized to | 5218 | Only top-level values (arrays and objects) can be serialized to |
| 5219 | JSON. The subobjects within these top-level values can be of any | 5219 | JSON@. The subobjects within these top-level values can be of any |
| 5220 | type. Likewise, the parsing functions will only return vectors, | 5220 | type. Likewise, the parsing functions will only return vectors, |
| 5221 | hashtables, alists, and plists. | 5221 | hashtables, alists, and plists. |
| 5222 | 5222 | ||
diff --git a/doc/misc/efaq-w32.texi b/doc/misc/efaq-w32.texi index 83dd176f984..bbfc86b111e 100644 --- a/doc/misc/efaq-w32.texi +++ b/doc/misc/efaq-w32.texi | |||
| @@ -143,7 +143,7 @@ executable, using the MinGW GCC compiler and development tools. | |||
| 143 | 143 | ||
| 144 | @cindex DOS port | 144 | @cindex DOS port |
| 145 | @cindex Windows 3.11 port | 145 | @cindex Windows 3.11 port |
| 146 | Emacs can also be compiled for MSDOS. When run on recent MS Windows, | 146 | Emacs can also be compiled for MSDOS@. When run on recent MS Windows, |
| 147 | it supports long file names, and uses the Windows clipboard. | 147 | it supports long file names, and uses the Windows clipboard. |
| 148 | See the @file{msdos} directory in the Emacs sources for building | 148 | See the @file{msdos} directory in the Emacs sources for building |
| 149 | instructions (requires DJGPP). | 149 | instructions (requires DJGPP). |
| @@ -222,7 +222,7 @@ specific notes about debugging Emacs. | |||
| 222 | 222 | ||
| 223 | @cindex debugging Emacs with GDB | 223 | @cindex debugging Emacs with GDB |
| 224 | GDB is the GNU debugger, which can be used to debug Emacs when it has | 224 | GDB is the GNU debugger, which can be used to debug Emacs when it has |
| 225 | been compiled with MinGW GCC. The best results will be obtained if | 225 | been compiled with MinGW GCC@. The best results will be obtained if |
| 226 | you start gdb from the @file{src} directory as @kbd{gdb ./emacs.exe}. | 226 | you start gdb from the @file{src} directory as @kbd{gdb ./emacs.exe}. |
| 227 | This will load the init file @file{.gdbinit}@footnote{ | 227 | This will load the init file @file{.gdbinit}@footnote{ |
| 228 | Latest versions of GDB might refuse to load the init file for security | 228 | Latest versions of GDB might refuse to load the init file for security |
| @@ -592,7 +592,7 @@ Subject: Re: Re[2]: problem with caps/ctrl swap on NT 4.0 | |||
| 592 | @end ignore | 592 | @end ignore |
| 593 | @smallexample | 593 | @smallexample |
| 594 | It's a binary value that lets you map keystrokes in the low-level keyboard | 594 | It's a binary value that lets you map keystrokes in the low-level keyboard |
| 595 | drivers in NT. As a result you don't have to worry about applications | 595 | drivers in NT@. As a result you don't have to worry about applications |
| 596 | bypassing mappings that you've done at a higher level (i.e., it just works). | 596 | bypassing mappings that you've done at a higher level (i.e., it just works). |
| 597 | 597 | ||
| 598 | Here's the format of the value: | 598 | Here's the format of the value: |
| @@ -1187,7 +1187,7 @@ A lot of effort has gone into making it easier to print from Emacs on | |||
| 1187 | MS Windows, but this has still been insufficient to keep up with | 1187 | MS Windows, but this has still been insufficient to keep up with |
| 1188 | changes in printing technology from text and postscript based printers | 1188 | changes in printing technology from text and postscript based printers |
| 1189 | connected via ports that can be accessed directly, to graphical | 1189 | connected via ports that can be accessed directly, to graphical |
| 1190 | printers that are only accessible via USB. For details, see | 1190 | printers that are only accessible via USB@. For details, see |
| 1191 | @uref{http://www.emacswiki.org/emacs/PrintingFromEmacs, Emacs | 1191 | @uref{http://www.emacswiki.org/emacs/PrintingFromEmacs, Emacs |
| 1192 | Wiki}, @uref{http://www.emacswiki.org/emacs/PrintWithWebBrowser}, and | 1192 | Wiki}, @uref{http://www.emacswiki.org/emacs/PrintWithWebBrowser}, and |
| 1193 | @uref{http://www.emacswiki.org/emacs/PrintFromWindowsExplorer}. | 1193 | @uref{http://www.emacswiki.org/emacs/PrintFromWindowsExplorer}. |
| @@ -1398,7 +1398,7 @@ default shell in Emacs, you can place the following in your init file: | |||
| 1398 | @end example | 1398 | @end example |
| 1399 | 1399 | ||
| 1400 | WARNING: Some versions of bash set and use the environment variable | 1400 | WARNING: Some versions of bash set and use the environment variable |
| 1401 | PID. For some as yet unknown reason, if @env{PID} is set and Emacs | 1401 | PID@. For some as yet unknown reason, if @env{PID} is set and Emacs |
| 1402 | passes it on to bash subshells, bash dies (Emacs can inherit the | 1402 | passes it on to bash subshells, bash dies (Emacs can inherit the |
| 1403 | @env{PID} variable if it's started from a bash shell). If you clear | 1403 | @env{PID} variable if it's started from a bash shell). If you clear |
| 1404 | the @env{PID} variable in your init file, you should be able to | 1404 | the @env{PID} variable in your init file, you should be able to |
| @@ -1890,9 +1890,9 @@ need to use. | |||
| 1890 | @node MSVC | 1890 | @node MSVC |
| 1891 | @section How do I use Emacs with Microsoft Visual C++ | 1891 | @section How do I use Emacs with Microsoft Visual C++ |
| 1892 | 1892 | ||
| 1893 | There are two ways you can use Emacs in conjunction with MSVC. You | 1893 | There are two ways you can use Emacs in conjunction with MSVC@. You |
| 1894 | can use Emacs as the editor, and do everything else in the DevStudio | 1894 | can use Emacs as the editor, and do everything else in the DevStudio |
| 1895 | IDE. Or you can use Emacs as an IDE, calling the MSVC command line | 1895 | IDE@. Or you can use Emacs as an IDE, calling the MSVC command line |
| 1896 | tools to build your project. | 1896 | tools to build your project. |
| 1897 | 1897 | ||
| 1898 | @menu | 1898 | @menu |
diff --git a/doc/misc/efaq.texi b/doc/misc/efaq.texi index 132e8ffaa93..b2ed60b8d80 100644 --- a/doc/misc/efaq.texi +++ b/doc/misc/efaq.texi | |||
| @@ -1125,7 +1125,7 @@ scanning of @code{#define}d symbols. | |||
| 1125 | 1125 | ||
| 1126 | @cindex xref | 1126 | @cindex xref |
| 1127 | @item | 1127 | @item |
| 1128 | New package Xref replaces Etags's front-end and UI. Xref provides a | 1128 | New package Xref replaces Etags's front-end and UI@. Xref provides a |
| 1129 | generic framework and new commands to find and move to definitions of | 1129 | generic framework and new commands to find and move to definitions of |
| 1130 | functions, macros, data structures etc., as well as go back to the | 1130 | functions, macros, data structures etc., as well as go back to the |
| 1131 | location where you were before moving to a definition. It supersedes | 1131 | location where you were before moving to a definition. It supersedes |
diff --git a/doc/misc/emacs-gnutls.texi b/doc/misc/emacs-gnutls.texi index 555a4b1b56e..7c57cc032c7 100644 --- a/doc/misc/emacs-gnutls.texi +++ b/doc/misc/emacs-gnutls.texi | |||
| @@ -134,7 +134,7 @@ order: @file{/etc/ssl/certs/ca-certificates.crt} for Debian, Ubuntu, | |||
| 134 | Gentoo and Arch Linux; @file{/etc/pki/tls/certs/ca-bundle.crt} for | 134 | Gentoo and Arch Linux; @file{/etc/pki/tls/certs/ca-bundle.crt} for |
| 135 | Fedora and RHEL; @file{/etc/ssl/ca-bundle.pem} for Suse; | 135 | Fedora and RHEL; @file{/etc/ssl/ca-bundle.pem} for Suse; |
| 136 | @file{/usr/ssl/certs/ca-bundle.crt} for Cygwin; | 136 | @file{/usr/ssl/certs/ca-bundle.crt} for Cygwin; |
| 137 | @file{/usr/local/share/certs/ca-root-nss.crt} for FreeBSD. You can | 137 | @file{/usr/local/share/certs/ca-root-nss.crt} for FreeBSD@. You can |
| 138 | easily customize @code{gnutls-trustfiles} to be something else, but | 138 | easily customize @code{gnutls-trustfiles} to be something else, but |
| 139 | let us know if you do, so we can make the change to benefit the other | 139 | let us know if you do, so we can make the change to benefit the other |
| 140 | users of that platform. | 140 | users of that platform. |
diff --git a/doc/misc/gnus-faq.texi b/doc/misc/gnus-faq.texi index fd285396c40..9c1d2d0160a 100644 --- a/doc/misc/gnus-faq.texi +++ b/doc/misc/gnus-faq.texi | |||
| @@ -689,8 +689,9 @@ retrieves via POP3? | |||
| 689 | @subsubheading Answer | 689 | @subsubheading Answer |
| 690 | 690 | ||
| 691 | Yes, if the POP3 server supports the UIDL control (maybe almost servers | 691 | Yes, if the POP3 server supports the UIDL control (maybe almost servers |
| 692 | do it nowadays). To do that, add a @code{:leave VALUE} pair to each | 692 | do it nowadays). To do that, add a @code{:leave @var{value}} pair to |
| 693 | POP3 mail source. @xref{Mail Source Specifiers}, for details on VALUE. | 693 | each POP3 mail source. @xref{Mail Source Specifiers}, for details on |
| 694 | @var{value}. | ||
| 694 | 695 | ||
| 695 | @node FAQ 4 - Reading messages | 696 | @node FAQ 4 - Reading messages |
| 696 | @subsection Reading messages | 697 | @subsection Reading messages |
diff --git a/doc/misc/message.texi b/doc/misc/message.texi index f9527ee7864..bdd31b1fe49 100644 --- a/doc/misc/message.texi +++ b/doc/misc/message.texi | |||
| @@ -1116,7 +1116,7 @@ is used. | |||
| 1116 | 1116 | ||
| 1117 | The choice between EasyPG and OpenSSL is controlled by the variable | 1117 | The choice between EasyPG and OpenSSL is controlled by the variable |
| 1118 | @code{mml-smime-use}, which needs to be set to the value @code{epg} | 1118 | @code{mml-smime-use}, which needs to be set to the value @code{epg} |
| 1119 | for EasyPG. Depending on your version of Emacs that value may be the | 1119 | for EasyPG@. Depending on your version of Emacs that value may be the |
| 1120 | default; if not, you can either customize that variable or place the | 1120 | default; if not, you can either customize that variable or place the |
| 1121 | following line in your @file{.emacs} file (that line needs to be | 1121 | following line in your @file{.emacs} file (that line needs to be |
| 1122 | placed above other code related to message/gnus/encryption): | 1122 | placed above other code related to message/gnus/encryption): |
| @@ -1232,7 +1232,7 @@ decryption/sign operation. @xref{Agent Options, , , gnupg, Using the | |||
| 1232 | GNU Privacy Guard}. | 1232 | GNU Privacy Guard}. |
| 1233 | 1233 | ||
| 1234 | How to use @command{gpg-agent} in Emacs depends on your version of | 1234 | How to use @command{gpg-agent} in Emacs depends on your version of |
| 1235 | GnuPG. With GnuPG version 2.1, @command{gpg-agent} is started | 1235 | GnuPG@. With GnuPG version 2.1, @command{gpg-agent} is started |
| 1236 | automatically if necessary. With older versions you may need to run | 1236 | automatically if necessary. With older versions you may need to run |
| 1237 | the following command from the shell before starting Emacs. | 1237 | the following command from the shell before starting Emacs. |
| 1238 | 1238 | ||
diff --git a/test/manual/etags/tex-src/gzip.texi b/test/manual/etags/tex-src/gzip.texi index ea5f7f5879e..72c5c7e93b6 100644 --- a/test/manual/etags/tex-src/gzip.texi +++ b/test/manual/etags/tex-src/gzip.texi | |||
| @@ -148,7 +148,7 @@ input and writes the uncompressed data on standard output. @code{zcat} | |||
| 148 | will uncompress files that have the correct magic number whether they | 148 | will uncompress files that have the correct magic number whether they |
| 149 | have a @samp{.gz} suffix or not. | 149 | have a @samp{.gz} suffix or not. |
| 150 | 150 | ||
| 151 | @code{gzip} uses the Lempel-Ziv algorithm used in @code{zip} and PKZIP. | 151 | @code{gzip} uses the Lempel-Ziv algorithm used in @code{zip} and PKZIP@. |
| 152 | The amount of compression obtained depends on the size of the input and | 152 | The amount of compression obtained depends on the size of the input and |
| 153 | the distribution of common substrings. Typically, text such as source | 153 | the distribution of common substrings. Typically, text such as source |
| 154 | code or English is reduced by 60-70%. Compression is generally much | 154 | code or English is reduced by 60-70%. Compression is generally much |