aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2017-12-22 13:45:46 -0500
committerGlenn Morris2017-12-22 13:45:46 -0500
commit7ffb7b1e013284bfccf262778a91198331f1eb2b (patch)
treee10d02db04cbf99c8416a611801bb973a78776f5
parent34fcfc5c049bb99d68945bb24fb9d6a0789a33dd (diff)
downloademacs-7ffb7b1e013284bfccf262778a91198331f1eb2b.tar.gz
emacs-7ffb7b1e013284bfccf262778a91198331f1eb2b.zip
; lispref nil/t markup fixes
-rw-r--r--doc/lispref/display.texi6
-rw-r--r--doc/lispref/frames.texi6
-rw-r--r--doc/lispref/sequences.texi2
-rw-r--r--doc/lispref/variables.texi6
4 files changed, 10 insertions, 10 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi
index 50069e3d1da..53c2014de05 100644
--- a/doc/lispref/display.texi
+++ b/doc/lispref/display.texi
@@ -50,7 +50,7 @@ screen is corrupted.
50 50
51@defun redraw-frame &optional frame 51@defun redraw-frame &optional frame
52This function clears and redisplays frame @var{frame}. If @var{frame} 52This function clears and redisplays frame @var{frame}. If @var{frame}
53is omitted or nil, it redraws the selected frame. 53is omitted or @code{nil}, it redraws the selected frame.
54@end defun 54@end defun
55 55
56 Even more powerful is @code{redraw-display}: 56 Even more powerful is @code{redraw-display}:
@@ -1994,7 +1994,7 @@ defaults to the selected one.
1994If the optional argument @var{first} is an integer, it denotes the index 1994If the optional argument @var{first} is an integer, it denotes the index
1995(starting with 0) of the first line of @var{window}'s glyph matrix to be 1995(starting with 0) of the first line of @var{window}'s glyph matrix to be
1996returned. Note that if @var{window} has a header line, the line with 1996returned. Note that if @var{window} has a header line, the line with
1997index 0 is that header line. If @var{first} is nil, the first line to 1997index 0 is that header line. If @var{first} is @code{nil}, the first line to
1998be considered is determined by the value of the optional argument 1998be considered is determined by the value of the optional argument
1999@var{body}: If @var{body} is non-@code{nil}, this means to start with 1999@var{body}: If @var{body} is non-@code{nil}, this means to start with
2000the first line of @var{window}'s body, skipping any header line, if 2000the first line of @var{window}'s body, skipping any header line, if
@@ -2003,7 +2003,7 @@ present. Otherwise, this function will start with the first line of
2003 2003
2004If the optional argument @var{last} is an integer, it denotes the index 2004If the optional argument @var{last} is an integer, it denotes the index
2005of the last line of @var{window}'s glyph matrix that shall be returned. 2005of the last line of @var{window}'s glyph matrix that shall be returned.
2006If @var{last} is nil, the last line to be considered is determined by 2006If @var{last} is @code{nil}, the last line to be considered is determined by
2007the value of @var{body}: If @var{body} is non-@code{nil}, this means to 2007the value of @var{body}: If @var{body} is non-@code{nil}, this means to
2008use the last line of @var{window}'s body, omitting @var{window}'s mode 2008use the last line of @var{window}'s body, omitting @var{window}'s mode
2009line, if present. Otherwise, this means to use the last line of 2009line, if present. Otherwise, this means to use the last line of
diff --git a/doc/lispref/frames.texi b/doc/lispref/frames.texi
index ec75361ace3..edddbddfbf3 100644
--- a/doc/lispref/frames.texi
+++ b/doc/lispref/frames.texi
@@ -1569,7 +1569,7 @@ window-system window in the stacking (Z-) order of the frame's display.
1569 1569
1570If this is @code{above}, the frame's window-system window is displayed 1570If this is @code{above}, the frame's window-system window is displayed
1571above all other window-system windows that do not have the @code{above} 1571above all other window-system windows that do not have the @code{above}
1572property set. If this is nil, the frame's window is displayed below all 1572property set. If this is @code{nil}, the frame's window is displayed below all
1573windows that have the @code{above} property set and above all windows 1573windows that have the @code{above} property set and above all windows
1574that have the @code{below} property set. If this is @code{below}, the 1574that have the @code{below} property set. If this is @code{below}, the
1575frame's window is displayed below all windows that do not have the 1575frame's window is displayed below all windows that do not have the
@@ -1898,7 +1898,7 @@ These parameters supply forms of interactions between different frames.
1898@item parent-frame 1898@item parent-frame
1899If non-@code{nil}, this means that this frame is a child frame 1899If non-@code{nil}, this means that this frame is a child frame
1900(@pxref{Child Frames}), and this parameter specifies its parent frame. 1900(@pxref{Child Frames}), and this parameter specifies its parent frame.
1901If nil, this means that this frame is a normal, top-level frame. 1901If @code{nil}, this means that this frame is a normal, top-level frame.
1902 1902
1903@vindex delete-before, a frame parameter 1903@vindex delete-before, a frame parameter
1904@item delete-before 1904@item delete-before
@@ -2120,7 +2120,7 @@ this parameter.
2120If non-@code{nil}, this frame's window-system window is drawn without 2120If non-@code{nil}, this frame's window-system window is drawn without
2121decorations, like the title, minimize/maximize boxes and external 2121decorations, like the title, minimize/maximize boxes and external
2122borders. This usually means that the window cannot be dragged, resized, 2122borders. This usually means that the window cannot be dragged, resized,
2123iconified, maximized or deleted with the mouse. If nil, the frame's 2123iconified, maximized or deleted with the mouse. If @code{nil}, the frame's
2124window is usually drawn with all the elements listed above unless their 2124window is usually drawn with all the elements listed above unless their
2125display has been suspended via window manager settings. 2125display has been suspended via window manager settings.
2126 2126
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi
index 8d56e022d8f..b3c90af7236 100644
--- a/doc/lispref/sequences.texi
+++ b/doc/lispref/sequences.texi
@@ -1634,7 +1634,7 @@ argument @var{b} is given, the result of this operation is stored into
1634@end defun 1634@end defun
1635 1635
1636@defun bool-vector-subsetp a b 1636@defun bool-vector-subsetp a b
1637Return @code{t} if every @code{t} value in @var{a} is also t in 1637Return @code{t} if every @code{t} value in @var{a} is also @code{t} in
1638@var{b}, @code{nil} otherwise. All arguments should be bool vectors of the 1638@var{b}, @code{nil} otherwise. All arguments should be bool vectors of the
1639same length. 1639same length.
1640@end defun 1640@end defun
diff --git a/doc/lispref/variables.texi b/doc/lispref/variables.texi
index 5bee0f9d82a..ad497a8b095 100644
--- a/doc/lispref/variables.texi
+++ b/doc/lispref/variables.texi
@@ -825,7 +825,7 @@ This function arranges for @var{watch-function} to be called whenever
825@var{operation} is a symbol representing the kind of change, one of: 825@var{operation} is a symbol representing the kind of change, one of:
826`set', `let', `unlet', `makunbound', and `defvaralias'. 826`set', `let', `unlet', `makunbound', and `defvaralias'.
827@var{where} is a buffer if the buffer-local value of the variable is 827@var{where} is a buffer if the buffer-local value of the variable is
828being changed, nil otherwise. 828being changed, @code{nil} otherwise.
829@end defun 829@end defun
830 830
831@defun remove-variable-watch symbol watch-function 831@defun remove-variable-watch symbol watch-function
@@ -2061,7 +2061,7 @@ identifying a connection and the application using this connection.
2061Property names might be @code{:application}, @code{:protocol}, 2061Property names might be @code{:application}, @code{:protocol},
2062@code{:user} and @code{:machine}. The property value of 2062@code{:user} and @code{:machine}. The property value of
2063@code{:application} is a symbol, all other property values are 2063@code{:application} is a symbol, all other property values are
2064strings. All properties are optional; if @var{criteria} is nil, it 2064strings. All properties are optional; if @var{criteria} is @code{nil}, it
2065always applies. Example: 2065always applies. Example:
2066 2066
2067@example 2067@example
@@ -2079,7 +2079,7 @@ always applies. Example:
2079@end group 2079@end group
2080@end example 2080@end example
2081 2081
2082 If @var{criteria} is nil, it applies for all remote connections. 2082 If @var{criteria} is @code{nil}, it applies for all remote connections.
2083Therefore, the example above would be equivalent to 2083Therefore, the example above would be equivalent to
2084 2084
2085@example 2085@example