diff options
| author | Steven Allen | 2024-07-15 18:16:41 +0200 |
|---|---|---|
| committer | Michael Albinus | 2024-07-15 18:16:41 +0200 |
| commit | ecc8516d9ca17c70b4407296fa1140bb5e2b822c (patch) | |
| tree | 36d596f814c242cd911cdcb55df476878bce5d2a /doc/misc | |
| parent | 5ec73eca57c09ad1a33c56dc4cd5b965cfaef063 (diff) | |
| download | emacs-ecc8516d9ca17c70b4407296fa1140bb5e2b822c.tar.gz emacs-ecc8516d9ca17c70b4407296fa1140bb5e2b822c.zip | |
; Replace (non-)nil with (non-)@code{nil} in texinfo files
* doc/lispref/functions.texi:
* doc/lispref/keymaps.texi:
* doc/lispref/strings.texi:
* doc/misc/cl.texi:
* doc/misc/dbus.texi:
* doc/misc/eshell.texi:
* doc/misc/message.texi:
* doc/misc/ses.texi:
* doc/misc/vtable.texi: Replace (non-)nil with (non-)@code{nil}.
Diffstat (limited to 'doc/misc')
| -rw-r--r-- | doc/misc/cl.texi | 8 | ||||
| -rw-r--r-- | doc/misc/dbus.texi | 2 | ||||
| -rw-r--r-- | doc/misc/eshell.texi | 9 | ||||
| -rw-r--r-- | doc/misc/message.texi | 4 | ||||
| -rw-r--r-- | doc/misc/ses.texi | 7 | ||||
| -rw-r--r-- | doc/misc/vtable.texi | 6 |
6 files changed, 19 insertions, 17 deletions
diff --git a/doc/misc/cl.texi b/doc/misc/cl.texi index a4a34ae07d6..e893205b40e 100644 --- a/doc/misc/cl.texi +++ b/doc/misc/cl.texi | |||
| @@ -388,10 +388,10 @@ This function prints an ellipsis (``@dots{}'') to @var{stream} (see | |||
| 388 | above). When @var{stream} is a buffer, the ellipsis will be given the | 388 | above). When @var{stream} is a buffer, the ellipsis will be given the |
| 389 | @code{cl-print-ellipsis} text property. The value of the text | 389 | @code{cl-print-ellipsis} text property. The value of the text |
| 390 | property will contain state (including @var{start}) in order to print | 390 | property will contain state (including @var{start}) in order to print |
| 391 | the elided part of @var{object} later. @var{start} should be nil if | 391 | the elided part of @var{object} later. @var{start} should be |
| 392 | the whole @var{object} is being elided, otherwise it should be an | 392 | @code{nil} if the whole @var{object} is being elided, otherwise it |
| 393 | index or other pointer into the internals of @var{object} which can be | 393 | should be an index or other pointer into the internals of @var{object} |
| 394 | passed to `cl-print-object-contents' at a later time. | 394 | which can be passed to `cl-print-object-contents' at a later time. |
| 395 | @end defun | 395 | @end defun |
| 396 | 396 | ||
| 397 | @defvar cl-print-expand-ellipsis-function | 397 | @defvar cl-print-expand-ellipsis-function |
diff --git a/doc/misc/dbus.texi b/doc/misc/dbus.texi index e5d867acd40..a98b738e73e 100644 --- a/doc/misc/dbus.texi +++ b/doc/misc/dbus.texi | |||
| @@ -1420,7 +1420,7 @@ We are not an owner of the name @var{service}. | |||
| 1420 | @end table | 1420 | @end table |
| 1421 | 1421 | ||
| 1422 | When @var{service} is not a known name but a unique name, the function | 1422 | When @var{service} is not a known name but a unique name, the function |
| 1423 | returns nil. | 1423 | returns @code{nil}. |
| 1424 | @end defun | 1424 | @end defun |
| 1425 | 1425 | ||
| 1426 | When a name has been chosen, Emacs can offer its own methods, which | 1426 | When a name has been chosen, Emacs can offer its own methods, which |
diff --git a/doc/misc/eshell.texi b/doc/misc/eshell.texi index 45bb1f806ee..2228b2752fd 100644 --- a/doc/misc/eshell.texi +++ b/doc/misc/eshell.texi | |||
| @@ -1758,8 +1758,8 @@ shells, there are also many differences. Don't let these similarities | |||
| 1758 | lull you into a false sense of familiarity. | 1758 | lull you into a false sense of familiarity. |
| 1759 | 1759 | ||
| 1760 | When using command form (@pxref{Invocation}), Eshell will ignore any | 1760 | When using command form (@pxref{Invocation}), Eshell will ignore any |
| 1761 | leading nil values, so if @var{foo} is @code{nil}, @samp{$@var{foo} | 1761 | leading @code{nil} values, so if @var{foo} is @code{nil}, |
| 1762 | echo hello} is equivalent to @samp{echo hello}. | 1762 | @samp{$@var{foo} echo hello} is equivalent to @samp{echo hello}. |
| 1763 | 1763 | ||
| 1764 | @table @code | 1764 | @table @code |
| 1765 | 1765 | ||
| @@ -2419,8 +2419,9 @@ an @code{eshell-generic-target} as described above). | |||
| 2419 | @defun eshell-function-target-create output-function &optional close-function | 2419 | @defun eshell-function-target-create output-function &optional close-function |
| 2420 | Create a new virtual target for Eshell that repeatedly calls | 2420 | Create a new virtual target for Eshell that repeatedly calls |
| 2421 | @var{output-function} with the redirected output, as described above. | 2421 | @var{output-function} with the redirected output, as described above. |
| 2422 | If @var{close-function} is non-nil, Eshell will call it when closing the | 2422 | If @var{close-function} is non-@code{nil}, Eshell will call it when |
| 2423 | target, passing non-@code{nil} if the redirected command succeeded. | 2423 | closing the target, passing non-@code{nil} if the redirected command |
| 2424 | succeeded. | ||
| 2424 | @end defun | 2425 | @end defun |
| 2425 | 2426 | ||
| 2426 | @node Pipelines | 2427 | @node Pipelines |
diff --git a/doc/misc/message.texi b/doc/misc/message.texi index d881244c735..6e0e4be7bf5 100644 --- a/doc/misc/message.texi +++ b/doc/misc/message.texi | |||
| @@ -2565,8 +2565,8 @@ into the message headers as the SMTP Method. If @var{cond} is a | |||
| 2565 | function, it will be called in the message buffer without any | 2565 | function, it will be called in the message buffer without any |
| 2566 | arguments, and the corresponding @var{method} will be inserted into | 2566 | arguments, and the corresponding @var{method} will be inserted into |
| 2567 | the message headers as the SMTP Method if the function returns a | 2567 | the message headers as the SMTP Method if the function returns a |
| 2568 | non-@code{nil} value; if @var{method} is nil, the value returned by | 2568 | non-@code{nil} value; if @var{method} is @code{nil}, the value |
| 2569 | the function @code{cond} is used instead. | 2569 | returned by the function @code{cond} is used instead. |
| 2570 | 2570 | ||
| 2571 | @end table | 2571 | @end table |
| 2572 | 2572 | ||
diff --git a/doc/misc/ses.texi b/doc/misc/ses.texi index 8500a0f08c4..80c7b93aa28 100644 --- a/doc/misc/ses.texi +++ b/doc/misc/ses.texi | |||
| @@ -1060,9 +1060,10 @@ as a single argument, since you'll probably use it with @code{ses-range}. | |||
| 1060 | 1060 | ||
| 1061 | Special cell values: | 1061 | Special cell values: |
| 1062 | @itemize | 1062 | @itemize |
| 1063 | @item nil prints typically the same as "", but allows previous cell to spill over. | 1063 | @item @code{nil} prints typically the same as "", but allows previous |
| 1064 | @item '*skip* replaces nil when the previous cell actually does spill over; | 1064 | cell to spill over. |
| 1065 | nothing is printed for it. | 1065 | @item '*skip* replaces @code{nil} when the previous cell actually does |
| 1066 | spill over; nothing is printed for it. | ||
| 1066 | @item '*error* indicates that the formula signaled an error instead of | 1067 | @item '*error* indicates that the formula signaled an error instead of |
| 1067 | producing a value: the print cell is filled with hash marks (#). | 1068 | producing a value: the print cell is filled with hash marks (#). |
| 1068 | @end itemize | 1069 | @end itemize |
diff --git a/doc/misc/vtable.texi b/doc/misc/vtable.texi index 6003435385f..2e0adfb235a 100644 --- a/doc/misc/vtable.texi +++ b/doc/misc/vtable.texi | |||
| @@ -559,9 +559,9 @@ table. | |||
| 559 | @defun vtable-insert-object table object &optional location before | 559 | @defun vtable-insert-object table object &optional location before |
| 560 | Insert @var{object} into @var{table}. @var{location} should be an | 560 | Insert @var{object} into @var{table}. @var{location} should be an |
| 561 | object in the table, the new object is inserted after this object, or | 561 | object in the table, the new object is inserted after this object, or |
| 562 | before it if @var{before} is non-nil. If @var{location} is @code{nil}, | 562 | before it if @var{before} is non-@code{nil}. If @var{location} is |
| 563 | @var{object} is appended to @var{table}, or prepended if @var{before} is | 563 | @code{nil}, @var{object} is appended to @var{table}, or prepended if |
| 564 | non-@code{nil}. | 564 | @var{before} is non-@code{nil}. |
| 565 | 565 | ||
| 566 | @var{location} can also be an integer, a zero-based index into the | 566 | @var{location} can also be an integer, a zero-based index into the |
| 567 | table. In this case, @var{object} is inserted at that index. If the | 567 | table. In this case, @var{object} is inserted at that index. If the |