aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorSteven Allen2024-07-15 18:16:41 +0200
committerMichael Albinus2024-07-15 18:16:41 +0200
commitecc8516d9ca17c70b4407296fa1140bb5e2b822c (patch)
tree36d596f814c242cd911cdcb55df476878bce5d2a /doc/misc
parent5ec73eca57c09ad1a33c56dc4cd5b965cfaef063 (diff)
downloademacs-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.texi8
-rw-r--r--doc/misc/dbus.texi2
-rw-r--r--doc/misc/eshell.texi9
-rw-r--r--doc/misc/message.texi4
-rw-r--r--doc/misc/ses.texi7
-rw-r--r--doc/misc/vtable.texi6
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
388above). When @var{stream} is a buffer, the ellipsis will be given the 388above). 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
390property will contain state (including @var{start}) in order to print 390property will contain state (including @var{start}) in order to print
391the elided part of @var{object} later. @var{start} should be nil if 391the elided part of @var{object} later. @var{start} should be
392the whole @var{object} is being elided, otherwise it should be an 392@code{nil} if the whole @var{object} is being elided, otherwise it
393index or other pointer into the internals of @var{object} which can be 393should be an index or other pointer into the internals of @var{object}
394passed to `cl-print-object-contents' at a later time. 394which 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
1422When @var{service} is not a known name but a unique name, the function 1422When @var{service} is not a known name but a unique name, the function
1423returns nil. 1423returns @code{nil}.
1424@end defun 1424@end defun
1425 1425
1426When a name has been chosen, Emacs can offer its own methods, which 1426When 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
1758lull you into a false sense of familiarity. 1758lull you into a false sense of familiarity.
1759 1759
1760When using command form (@pxref{Invocation}), Eshell will ignore any 1760When using command form (@pxref{Invocation}), Eshell will ignore any
1761leading nil values, so if @var{foo} is @code{nil}, @samp{$@var{foo} 1761leading @code{nil} values, so if @var{foo} is @code{nil},
1762echo 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
2420Create a new virtual target for Eshell that repeatedly calls 2420Create 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.
2422If @var{close-function} is non-nil, Eshell will call it when closing the 2422If @var{close-function} is non-@code{nil}, Eshell will call it when
2423target, passing non-@code{nil} if the redirected command succeeded. 2423closing the target, passing non-@code{nil} if the redirected command
2424succeeded.
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
2565function, it will be called in the message buffer without any 2565function, it will be called in the message buffer without any
2566arguments, and the corresponding @var{method} will be inserted into 2566arguments, and the corresponding @var{method} will be inserted into
2567the message headers as the SMTP Method if the function returns a 2567the message headers as the SMTP Method if the function returns a
2568non-@code{nil} value; if @var{method} is nil, the value returned by 2568non-@code{nil} value; if @var{method} is @code{nil}, the value
2569the function @code{cond} is used instead. 2569returned 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
1061Special cell values: 1061Special 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; 1064cell to spill over.
1065nothing is printed for it. 1065@item '*skip* replaces @code{nil} when the previous cell actually does
1066spill 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
1067producing a value: the print cell is filled with hash marks (#). 1068producing 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
560Insert @var{object} into @var{table}. @var{location} should be an 560Insert @var{object} into @var{table}. @var{location} should be an
561object in the table, the new object is inserted after this object, or 561object in the table, the new object is inserted after this object, or
562before it if @var{before} is non-nil. If @var{location} is @code{nil}, 562before 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
564non-@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
567table. In this case, @var{object} is inserted at that index. If the 567table. In this case, @var{object} is inserted at that index. If the