aboutsummaryrefslogtreecommitdiffstats
path: root/doc
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
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')
-rw-r--r--doc/lispref/functions.texi2
-rw-r--r--doc/lispref/keymaps.texi8
-rw-r--r--doc/lispref/strings.texi2
-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
9 files changed, 25 insertions, 23 deletions
diff --git a/doc/lispref/functions.texi b/doc/lispref/functions.texi
index 695e1c3efb5..0cf41072ec3 100644
--- a/doc/lispref/functions.texi
+++ b/doc/lispref/functions.texi
@@ -2089,7 +2089,7 @@ code) obey the advice and other calls (from C code) do not.
2089 2089
2090@defmac define-advice symbol (where lambda-list &optional name depth) &rest body 2090@defmac define-advice symbol (where lambda-list &optional name depth) &rest body
2091This macro defines a piece of advice and adds it to the function named 2091This macro defines a piece of advice and adds it to the function named
2092@var{symbol}. If @var{name} is non-nil, the advice is named 2092@var{symbol}. If @var{name} is non-@code{nil}, the advice is named
2093@code{@var{symbol}@@@var{name}} and installed with the name @var{name}; otherwise, 2093@code{@var{symbol}@@@var{name}} and installed with the name @var{name}; otherwise,
2094the advice is anonymous. See @code{advice-add} for explanation of 2094the advice is anonymous. See @code{advice-add} for explanation of
2095other arguments. 2095other arguments.
diff --git a/doc/lispref/keymaps.texi b/doc/lispref/keymaps.texi
index 32aa98d31cb..a67d8da244e 100644
--- a/doc/lispref/keymaps.texi
+++ b/doc/lispref/keymaps.texi
@@ -2603,10 +2603,10 @@ operates on menu data structures, so you should write it so it can
2603safely be called at any time. 2603safely be called at any time.
2604 2604
2605@item :wrap @var{wrap-p} 2605@item :wrap @var{wrap-p}
2606If @var{wrap-p} is non-nil inside a tool bar, the menu item is not 2606If @var{wrap-p} is non-@code{nil} inside a tool bar, the menu item is
2607displayed, but instead causes subsequent items to be displayed on a 2607not displayed, but instead causes subsequent items to be displayed on
2608new line. This is not supported when Emacs uses the GTK+ or Nextstep 2608a new line. This is not supported when Emacs uses the GTK+ or
2609toolkits. 2609Nextstep toolkits.
2610@end table 2610@end table
2611 2611
2612@node Menu Separators 2612@node Menu Separators
diff --git a/doc/lispref/strings.texi b/doc/lispref/strings.texi
index e290e2e7a6b..d29665ac19b 100644
--- a/doc/lispref/strings.texi
+++ b/doc/lispref/strings.texi
@@ -1499,7 +1499,7 @@ case.
1499The definition of a word is any sequence of consecutive characters that 1499The definition of a word is any sequence of consecutive characters that
1500are assigned to the word constituent syntax class in the current syntax 1500are assigned to the word constituent syntax class in the current syntax
1501table (@pxref{Syntax Class Table}); if @code{case-symbols-as-words} 1501table (@pxref{Syntax Class Table}); if @code{case-symbols-as-words}
1502is non-nil, characters assigned to the symbol constituent syntax 1502is non-@code{nil}, characters assigned to the symbol constituent syntax
1503class are also considered as word constituent. 1503class are also considered as word constituent.
1504 1504
1505When @var{string-or-char} is a character, this function does the same 1505When @var{string-or-char} is a character, this function does the same
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