summaryrefslogtreecommitdiff
path: root/lispref
diff options
context:
space:
mode:
authorJesper Harder <harder@ifa.au.dk>2004-04-11 00:14:53 +0000
committerJesper Harder <harder@ifa.au.dk>2004-04-11 00:14:53 +0000
commit00991494b5bf6a389bc715c45e2861869399c0fc (patch)
tree6b893876f66a92870f76d4db99ec694a776ede38 /lispref
parentd81aa76a117f4ded2f1094cf249cd3ccc06ec6d9 (diff)
downloademacs-00991494b5bf6a389bc715c45e2861869399c0fc.tar.gz
Markup fixes.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/display.texi4
-rw-r--r--lispref/positions.texi4
-rw-r--r--lispref/processes.texi6
3 files changed, 7 insertions, 7 deletions
diff --git a/lispref/display.texi b/lispref/display.texi
index 63ee6d720f7..87ab5aabb2c 100644
--- a/lispref/display.texi
+++ b/lispref/display.texi
@@ -2022,8 +2022,8 @@ value for that attribute.
These functions return the foreground color (or background color,
respectively) of face @var{face}, as a string.
-If @var{inherit} is nil, only a color directly defined by the face is
-returned. If @var{inherit} is non-nil, any faces specified by its
+If @var{inherit} is @code{nil}, only a color directly defined by the face is
+returned. If @var{inherit} is non-@code{nil}, any faces specified by its
@code{:inherit} attribute are considered as well, and if @var{inherit}
is a face or a list of faces, then they are also considered, until a
specified color is found. To ensure that the return value is always
diff --git a/lispref/positions.texi b/lispref/positions.texi
index 100b55d01dd..22a800a2216 100644
--- a/lispref/positions.texi
+++ b/lispref/positions.texi
@@ -411,8 +411,8 @@ Here is an example of using @code{count-lines}:
@defun line-number-at-pos &optional pos
@cindex line number
This function returns the line number in the current buffer
-corresponding the buffer position @var{pos}. If @var{pos} is nil or
-omitted, the current buffer position is used.
+corresponding the buffer position @var{pos}. If @var{pos} is @code{nil}
+or omitted, the current buffer position is used.
@end defun
@ignore
diff --git a/lispref/processes.texi b/lispref/processes.texi
index 7a7c19eef9f..098d3936e6e 100644
--- a/lispref/processes.texi
+++ b/lispref/processes.texi
@@ -1647,7 +1647,7 @@ The client process' plist is initialized from the server's plist.
@defun open-network-stream-server name buffer-or-name service &optional sentinel filter
Create a network server process for a TCP service.
-It returns nil if server processes are not supported; otherwise,
+It returns @code{nil} if server processes are not supported; otherwise,
it returns a subprocess-object to represent the server.
When a client connects to the specified service, Emacs creates a new
@@ -1843,8 +1843,8 @@ child connection as they are created.
@item :bindtodevice @var{device-name}
If @var{device-name} is a non-empty string identifying a network
interface name (see @code{network-interface-list}), only handle
-packets received on that interface. If @var{device-name} is nil (the
-default), handle packets received on any interface.
+packets received on that interface. If @var{device-name} is @code{nil}
+(the default), handle packets received on any interface.
Using this option may require special privileges on some systems.