diff options
| author | Dave Love | 2000-06-06 14:56:30 +0000 |
|---|---|---|
| committer | Dave Love | 2000-06-06 14:56:30 +0000 |
| commit | bb2337f5adb4abbf93651ee946ea7fccb6bd1a31 (patch) | |
| tree | 381a9199a64324fd572b983127c2b6b840d1fd1c /lispref | |
| parent | cedbd8d02f7893a32ed841cc4819ae3924c1cd9b (diff) | |
| download | emacs-bb2337f5adb4abbf93651ee946ea7fccb6bd1a31.tar.gz emacs-bb2337f5adb4abbf93651ee946ea7fccb6bd1a31.zip | |
*** empty log message ***
Diffstat (limited to 'lispref')
| -rw-r--r-- | lispref/display.texi | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/lispref/display.texi b/lispref/display.texi index 5dd1dcec1fe..e23b8ddfb5b 100644 --- a/lispref/display.texi +++ b/lispref/display.texi | |||
| @@ -533,11 +533,14 @@ about to be executed. | |||
| 533 | @defvar overlay-arrow-string | 533 | @defvar overlay-arrow-string |
| 534 | This variable holds the string to display to call attention to a | 534 | This variable holds the string to display to call attention to a |
| 535 | particular line, or @code{nil} if the arrow feature is not in use. | 535 | particular line, or @code{nil} if the arrow feature is not in use. |
| 536 | On a graphical display the contents of the string are ignored; instead a | ||
| 537 | glyph is displayed in the fringe area to the left of the display area. | ||
| 536 | @end defvar | 538 | @end defvar |
| 537 | 539 | ||
| 538 | @defvar overlay-arrow-position | 540 | @defvar overlay-arrow-position |
| 539 | This variable holds a marker that indicates where to display the overlay | 541 | This variable holds a marker that indicates where to display the overlay |
| 540 | arrow. It should point at the beginning of a line. The arrow text | 542 | arrow. It should point at the beginning of a line. On a non-graphical |
| 543 | display the arrow text | ||
| 541 | appears at the beginning of that line, overlaying any text that would | 544 | appears at the beginning of that line, overlaying any text that would |
| 542 | otherwise appear. Since the arrow is usually short, and the line | 545 | otherwise appear. Since the arrow is usually short, and the line |
| 543 | usually begins with indentation, normally nothing significant is | 546 | usually begins with indentation, normally nothing significant is |
| @@ -2322,7 +2325,7 @@ If @var{window} is @code{nil}, the selected window is used. | |||
| 2322 | @cindex conditional display specifications | 2325 | @cindex conditional display specifications |
| 2323 | 2326 | ||
| 2324 | You can make any display specification conditional. To do that, | 2327 | You can make any display specification conditional. To do that, |
| 2325 | package it in another list of the form @code{(when @var{condition} | 2328 | package it in another list of the form @code{(when @var{condition} . |
| 2326 | @var{spec})}. Then the specification @var{spec} applies only when | 2329 | @var{spec})}. Then the specification @var{spec} applies only when |
| 2327 | @var{condition} evaluates to a non-@code{nil} value. During the | 2330 | @var{condition} evaluates to a non-@code{nil} value. During the |
| 2328 | evaluation, point is temporarily set at the end position of the text | 2331 | evaluation, point is temporarily set at the end position of the text |
| @@ -2674,7 +2677,7 @@ as @code{nil}. | |||
| 2674 | property yourself, but it is easier to use the functions in this | 2677 | property yourself, but it is easier to use the functions in this |
| 2675 | section. | 2678 | section. |
| 2676 | 2679 | ||
| 2677 | @defun insert-image image string &optional area | 2680 | @defun insert-image image &optional string area |
| 2678 | This function inserts @var{image} in the current buffer at point. The | 2681 | This function inserts @var{image} in the current buffer at point. The |
| 2679 | value @var{image} should be an image descriptor; it could be a value | 2682 | value @var{image} should be an image descriptor; it could be a value |
| 2680 | returned by @code{create-image}, or the value of a symbol defined with | 2683 | returned by @code{create-image}, or the value of a symbol defined with |
| @@ -2692,11 +2695,12 @@ it a @code{display} property which specifies @var{image}. @xref{Display | |||
| 2692 | Property}. | 2695 | Property}. |
| 2693 | @end defun | 2696 | @end defun |
| 2694 | 2697 | ||
| 2695 | @defun put-image image pos string &optional area | 2698 | @defun put-image image pos &optional string area |
| 2696 | This function puts image @var{image} in front of @var{pos} in the | 2699 | This function puts image @var{image} in front of @var{pos} in the |
| 2697 | current buffer. The argument @var{pos} should be an integer or a | 2700 | current buffer. The argument @var{pos} should be an integer or a |
| 2698 | marker. It specifies the buffer position where the image should appear. | 2701 | marker. It specifies the buffer position where the image should appear. |
| 2699 | The argument @var{string} specifies the text that should hold the image. | 2702 | The argument @var{string} specifies the text that should hold the image |
| 2703 | as an alternative to the default. | ||
| 2700 | 2704 | ||
| 2701 | The argument @var{image} must be an image descriptor, perhaps returned | 2705 | The argument @var{image} must be an image descriptor, perhaps returned |
| 2702 | by @code{create-image} or stored by @code{defimage}. | 2706 | by @code{create-image} or stored by @code{defimage}. |