diff options
| author | Richard M. Stallman | 2003-06-24 18:15:06 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-06-24 18:15:06 +0000 |
| commit | 9a8dc0d34167b8ec82a2bfffdf006050b852b9ff (patch) | |
| tree | 0e8619be12513440a9d4b93c325cb9e2a3485097 | |
| parent | 7a010076e305bfccf3e65d95c4d33eef8ba114e3 (diff) | |
| download | emacs-9a8dc0d34167b8ec82a2bfffdf006050b852b9ff.tar.gz emacs-9a8dc0d34167b8ec82a2bfffdf006050b852b9ff.zip | |
Fix minor Texinfo usage.
| -rw-r--r-- | lispref/backups.texi | 12 | ||||
| -rw-r--r-- | lispref/display.texi | 49 | ||||
| -rw-r--r-- | lispref/edebug.texi | 4 |
3 files changed, 34 insertions, 31 deletions
diff --git a/lispref/backups.texi b/lispref/backups.texi index e803904a4e8..602c5c6dbec 100644 --- a/lispref/backups.texi +++ b/lispref/backups.texi | |||
| @@ -143,9 +143,9 @@ ignored. | |||
| 143 | 143 | ||
| 144 | @defvar make-backup-file-name-function | 144 | @defvar make-backup-file-name-function |
| 145 | @tindex make-backup-file-name-function | 145 | @tindex make-backup-file-name-function |
| 146 | This variable's value is a function to use for making backups instead of | 146 | This variable's value is a function to use for making backups instead |
| 147 | the default @code{make-backup-file-name}. A value of nil gives the | 147 | of the default @code{make-backup-file-name}. A value of @code{nil} |
| 148 | default @code{make-backup-file-name} behaviour. | 148 | gives the default @code{make-backup-file-name} behaviour. |
| 149 | 149 | ||
| 150 | This could be buffer-local to do something special for specific | 150 | This could be buffer-local to do something special for specific |
| 151 | files. If you define it, you may need to change | 151 | files. If you define it, you may need to change |
| @@ -558,9 +558,9 @@ the current buffer is large, the specified timeout is multiplied by a | |||
| 558 | factor that increases as the size increases; for a million-byte | 558 | factor that increases as the size increases; for a million-byte |
| 559 | buffer, the factor is almost 4.) | 559 | buffer, the factor is almost 4.) |
| 560 | 560 | ||
| 561 | If the value is zero or nil, then auto-saving is not done as a result | 561 | If the value is zero or @code{nil}, then auto-saving is not done as a |
| 562 | of idleness, only after a certain number of input events | 562 | result of idleness, only after a certain number of input events as |
| 563 | as specified by @code{auto-save-interval}. | 563 | specified by @code{auto-save-interval}. |
| 564 | @end defopt | 564 | @end defopt |
| 565 | 565 | ||
| 566 | @defvar auto-save-hook | 566 | @defvar auto-save-hook |
diff --git a/lispref/display.texi b/lispref/display.texi index a10fde57dcd..1fb2157fcf2 100644 --- a/lispref/display.texi +++ b/lispref/display.texi | |||
| @@ -1668,14 +1668,15 @@ that means the selected frame (@pxref{Input Focus}). | |||
| 1668 | If @var{frame} is @code{t}, the value is the default for | 1668 | If @var{frame} is @code{t}, the value is the default for |
| 1669 | @var{face} for new frames. | 1669 | @var{face} for new frames. |
| 1670 | 1670 | ||
| 1671 | If @var{inherit} is nil, only attributes directly defined by | 1671 | If @var{inherit} is @code{nil}, only attributes directly defined by |
| 1672 | @var{face} are considered, so the return value may be | 1672 | @var{face} are considered, so the return value may be |
| 1673 | @code{unspecified}, or a relative value. If @var{inherit} is non-nil, | 1673 | @code{unspecified}, or a relative value. If @var{inherit} is |
| 1674 | @var{face}'s definition of @var{attribute} is merged with the faces | 1674 | non-@code{nil}, @var{face}'s definition of @var{attribute} is merged |
| 1675 | specified by its @code{:inherit} attribute; however the return value | 1675 | with the faces specified by its @code{:inherit} attribute; however the |
| 1676 | may still be @code{unspecified} or relative. If @var{inherit} is a | 1676 | return value may still be @code{unspecified} or relative. If |
| 1677 | face or a list of faces, then the result is further merged with that | 1677 | @var{inherit} is a face or a list of faces, then the result is further |
| 1678 | face (or faces), until it becomes specified and absolute. | 1678 | merged with that face (or faces), until it becomes specified and |
| 1679 | absolute. | ||
| 1679 | 1680 | ||
| 1680 | To ensure that the return value is always specified and absolute, use | 1681 | To ensure that the return value is always specified and absolute, use |
| 1681 | a value of @code{default} for @var{inherit}; this will resolve any | 1682 | a value of @code{default} for @var{inherit}; this will resolve any |
| @@ -1790,12 +1791,13 @@ specified, use a value of @code{default} for @var{inherit}. | |||
| 1790 | This function returns the name of the background stipple pattern of face | 1791 | This function returns the name of the background stipple pattern of face |
| 1791 | @var{face}, or @code{nil} if it doesn't have one. | 1792 | @var{face}, or @code{nil} if it doesn't have one. |
| 1792 | 1793 | ||
| 1793 | If @var{inherit} is nil, only a stipple directly defined by the face | 1794 | If @var{inherit} is @code{nil}, only a stipple directly defined by the |
| 1794 | is returned. If @var{inherit} is non-nil, any faces specified by its | 1795 | face is returned. If @var{inherit} is non-@code{nil}, any faces |
| 1795 | @code{:inherit} attribute are considered as well, and if @var{inherit} | 1796 | specified by its @code{:inherit} attribute are considered as well, and |
| 1796 | is a face or a list of faces, then they are also considered, until a | 1797 | if @var{inherit} is a face or a list of faces, then they are also |
| 1797 | specified stipple is found. To ensure that the return value is always | 1798 | considered, until a specified stipple is found. To ensure that the |
| 1798 | specified, use a value of @code{default} for @var{inherit}. | 1799 | return value is always specified, use a value of @code{default} for |
| 1800 | @var{inherit}. | ||
| 1799 | @end defun | 1801 | @end defun |
| 1800 | 1802 | ||
| 1801 | @defun face-font face &optional frame | 1803 | @defun face-font face &optional frame |
| @@ -2140,9 +2142,10 @@ The first five elements correspond to face attributes; if you | |||
| 2140 | specify these attributes for a face, it will use this font. | 2142 | specify these attributes for a face, it will use this font. |
| 2141 | 2143 | ||
| 2142 | The last three elements give additional information about the font. | 2144 | The last three elements give additional information about the font. |
| 2143 | @var{fixed-p} is non-nil if the font is fixed-pitch. @var{full} is the | 2145 | @var{fixed-p} is non-@code{nil} if the font is fixed-pitch. |
| 2144 | full name of the font, and @var{registry-and-encoding} is a string | 2146 | @var{full} is the full name of the font, and |
| 2145 | giving the registry and encoding of the font. | 2147 | @var{registry-and-encoding} is a string giving the registry and |
| 2148 | encoding of the font. | ||
| 2146 | 2149 | ||
| 2147 | The result list is sorted according to the current face font sort order. | 2150 | The result list is sorted according to the current face font sort order. |
| 2148 | @end defun | 2151 | @end defun |
| @@ -2685,9 +2688,9 @@ color from the corners is the background color of the image. Otherwise, | |||
| 2685 | @var{bg} must be a list @code{(@var{red} @var{green} @var{blue})} | 2688 | @var{bg} must be a list @code{(@var{red} @var{green} @var{blue})} |
| 2686 | specifying the color to assume for the background of the image. | 2689 | specifying the color to assume for the background of the image. |
| 2687 | 2690 | ||
| 2688 | If @var{mask} is nil, remove a mask from the image, if it has one. Images | 2691 | If @var{mask} is @code{nil}, remove a mask from the image, if it has |
| 2689 | in some formats include a mask which can be removed by specifying | 2692 | one. Images in some formats include a mask which can be removed by |
| 2690 | @code{:mask nil}. | 2693 | specifying @code{:mask nil}. |
| 2691 | @end table | 2694 | @end table |
| 2692 | 2695 | ||
| 2693 | @defun image-mask-p spec &optional frame | 2696 | @defun image-mask-p spec &optional frame |
| @@ -3008,10 +3011,10 @@ This removes only images that were put into @var{buffer} the way | |||
| 3008 | @tindex image-size | 3011 | @tindex image-size |
| 3009 | This function returns the size of an image as a pair | 3012 | This function returns the size of an image as a pair |
| 3010 | @w{@code{(@var{width} . @var{height})}}. @var{spec} is an image | 3013 | @w{@code{(@var{width} . @var{height})}}. @var{spec} is an image |
| 3011 | specification. @var{pixels} non-nil means return sizes measured in | 3014 | specification. @var{pixels} non-@code{nil} means return sizes |
| 3012 | pixels, otherwise return sizes measured in canonical character units | 3015 | measured in pixels, otherwise return sizes measured in canonical |
| 3013 | (fractions of the width/height of the frame's default font). | 3016 | character units (fractions of the width/height of the frame's default |
| 3014 | @var{frame} is the frame on which the image will be displayed. | 3017 | font). @var{frame} is the frame on which the image will be displayed. |
| 3015 | @var{frame} null or omitted means use the selected frame (@pxref{Input | 3018 | @var{frame} null or omitted means use the selected frame (@pxref{Input |
| 3016 | Focus}). | 3019 | Focus}). |
| 3017 | @end defun | 3020 | @end defun |
diff --git a/lispref/edebug.texi b/lispref/edebug.texi index b94ba8838ba..8ddbcf7a74f 100644 --- a/lispref/edebug.texi +++ b/lispref/edebug.texi | |||
| @@ -1550,7 +1550,7 @@ until the @emph{next} time Edebug is invoked via a new command. | |||
| 1550 | @c A new command is not precisely true, but that is close enough -- dan | 1550 | @c A new command is not precisely true, but that is close enough -- dan |
| 1551 | 1551 | ||
| 1552 | @defopt edebug-global-break-condition | 1552 | @defopt edebug-global-break-condition |
| 1553 | If non-@code{nil}, an expression to test for at every stop point. | 1553 | If non-@code{nil}, an expression to test for at every stop point. If |
| 1554 | If the result is non-nil, then break. Errors are ignored. | 1554 | the result is non-@code{nil}, then break. Errors are ignored. |
| 1555 | @xref{Global Break Condition}. | 1555 | @xref{Global Break Condition}. |
| 1556 | @end defopt | 1556 | @end defopt |