diff options
| author | Glenn Morris | 2017-12-22 13:45:46 -0500 |
|---|---|---|
| committer | Glenn Morris | 2017-12-22 13:45:46 -0500 |
| commit | 7ffb7b1e013284bfccf262778a91198331f1eb2b (patch) | |
| tree | e10d02db04cbf99c8416a611801bb973a78776f5 | |
| parent | 34fcfc5c049bb99d68945bb24fb9d6a0789a33dd (diff) | |
| download | emacs-7ffb7b1e013284bfccf262778a91198331f1eb2b.tar.gz emacs-7ffb7b1e013284bfccf262778a91198331f1eb2b.zip | |
; lispref nil/t markup fixes
| -rw-r--r-- | doc/lispref/display.texi | 6 | ||||
| -rw-r--r-- | doc/lispref/frames.texi | 6 | ||||
| -rw-r--r-- | doc/lispref/sequences.texi | 2 | ||||
| -rw-r--r-- | doc/lispref/variables.texi | 6 |
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 |
| 52 | This function clears and redisplays frame @var{frame}. If @var{frame} | 52 | This function clears and redisplays frame @var{frame}. If @var{frame} |
| 53 | is omitted or nil, it redraws the selected frame. | 53 | is 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. | |||
| 1994 | If the optional argument @var{first} is an integer, it denotes the index | 1994 | If 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 |
| 1996 | returned. Note that if @var{window} has a header line, the line with | 1996 | returned. Note that if @var{window} has a header line, the line with |
| 1997 | index 0 is that header line. If @var{first} is nil, the first line to | 1997 | index 0 is that header line. If @var{first} is @code{nil}, the first line to |
| 1998 | be considered is determined by the value of the optional argument | 1998 | be 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 |
| 2000 | the first line of @var{window}'s body, skipping any header line, if | 2000 | the 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 | ||
| 2004 | If the optional argument @var{last} is an integer, it denotes the index | 2004 | If the optional argument @var{last} is an integer, it denotes the index |
| 2005 | of the last line of @var{window}'s glyph matrix that shall be returned. | 2005 | of the last line of @var{window}'s glyph matrix that shall be returned. |
| 2006 | If @var{last} is nil, the last line to be considered is determined by | 2006 | If @var{last} is @code{nil}, the last line to be considered is determined by |
| 2007 | the value of @var{body}: If @var{body} is non-@code{nil}, this means to | 2007 | the value of @var{body}: If @var{body} is non-@code{nil}, this means to |
| 2008 | use the last line of @var{window}'s body, omitting @var{window}'s mode | 2008 | use the last line of @var{window}'s body, omitting @var{window}'s mode |
| 2009 | line, if present. Otherwise, this means to use the last line of | 2009 | line, 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 | ||
| 1570 | If this is @code{above}, the frame's window-system window is displayed | 1570 | If this is @code{above}, the frame's window-system window is displayed |
| 1571 | above all other window-system windows that do not have the @code{above} | 1571 | above all other window-system windows that do not have the @code{above} |
| 1572 | property set. If this is nil, the frame's window is displayed below all | 1572 | property set. If this is @code{nil}, the frame's window is displayed below all |
| 1573 | windows that have the @code{above} property set and above all windows | 1573 | windows that have the @code{above} property set and above all windows |
| 1574 | that have the @code{below} property set. If this is @code{below}, the | 1574 | that have the @code{below} property set. If this is @code{below}, the |
| 1575 | frame's window is displayed below all windows that do not have the | 1575 | frame'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 |
| 1899 | If non-@code{nil}, this means that this frame is a child frame | 1899 | If 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. |
| 1901 | If nil, this means that this frame is a normal, top-level frame. | 1901 | If @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. | |||
| 2120 | If non-@code{nil}, this frame's window-system window is drawn without | 2120 | If non-@code{nil}, this frame's window-system window is drawn without |
| 2121 | decorations, like the title, minimize/maximize boxes and external | 2121 | decorations, like the title, minimize/maximize boxes and external |
| 2122 | borders. This usually means that the window cannot be dragged, resized, | 2122 | borders. This usually means that the window cannot be dragged, resized, |
| 2123 | iconified, maximized or deleted with the mouse. If nil, the frame's | 2123 | iconified, maximized or deleted with the mouse. If @code{nil}, the frame's |
| 2124 | window is usually drawn with all the elements listed above unless their | 2124 | window is usually drawn with all the elements listed above unless their |
| 2125 | display has been suspended via window manager settings. | 2125 | display 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 |
| 1637 | Return @code{t} if every @code{t} value in @var{a} is also t in | 1637 | Return @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 |
| 1639 | same length. | 1639 | same 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 |
| 828 | being changed, nil otherwise. | 828 | being 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. | |||
| 2061 | Property names might be @code{:application}, @code{:protocol}, | 2061 | Property 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 |
| 2064 | strings. All properties are optional; if @var{criteria} is nil, it | 2064 | strings. All properties are optional; if @var{criteria} is @code{nil}, it |
| 2065 | always applies. Example: | 2065 | always 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. |
| 2083 | Therefore, the example above would be equivalent to | 2083 | Therefore, the example above would be equivalent to |
| 2084 | 2084 | ||
| 2085 | @example | 2085 | @example |