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 | |
| parent | cedbd8d02f7893a32ed841cc4819ae3924c1cd9b (diff) | |
| download | emacs-bb2337f5adb4abbf93651ee946ea7fccb6bd1a31.tar.gz emacs-bb2337f5adb4abbf93651ee946ea7fccb6bd1a31.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lispref/display.texi | 14 | ||||
| -rw-r--r-- | lwlib/ChangeLog | 25 |
3 files changed, 39 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index addd905160d..83b67478e9f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-06-06 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * image.el (find-image): Doc fix. Return nil if image not found. | ||
| 4 | (put-image, insert-image): Make STRING arg optional. | ||
| 5 | |||
| 1 | 2000-06-06 Kenichi Handa <handa@etl.go.jp> | 6 | 2000-06-06 Kenichi Handa <handa@etl.go.jp> |
| 2 | 7 | ||
| 3 | * language/vietnamese.el: Remove eval-when-compile. | 8 | * language/vietnamese.el: Remove eval-when-compile. |
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}. |
diff --git a/lwlib/ChangeLog b/lwlib/ChangeLog index 4115e67ade5..cc80c85d22c 100644 --- a/lwlib/ChangeLog +++ b/lwlib/ChangeLog | |||
| @@ -1,3 +1,28 @@ | |||
| 1 | 2000-06-06 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * xlwmenu.c (x_alloc_nearest_color_for_widget, x_catch_errors) | ||
| 4 | (x_uncatch_errors, x_had_errors_p, x_clear_errors): Add prototypes | ||
| 5 | -- should be moved into separate header. | ||
| 6 | (make_shadow_gcs) <x_alloc_nearest_color_for_widget>: Cast first | ||
| 7 | arg. | ||
| 8 | (Start) <pop_up_menu>: Cast second arg. | ||
| 9 | |||
| 10 | * lwlib.c (P_): Use PROTOTYPES. | ||
| 11 | (safe_strdup): Declare arg const. | ||
| 12 | (lw_modify_all_widgets) <!info>: Return 0. | ||
| 13 | |||
| 14 | * lwlib-Xm.c (P_): Use PROTOTYPES. | ||
| 15 | |||
| 16 | * xlwmenu.h, lwlib.h, lwlib-utils.h, lwlib-int.h, lwlib-Xm.h: | ||
| 17 | * lwlib-Xlw.h, lwlib-Xaw.h: Enable prototypes. | ||
| 18 | |||
| 19 | * lwlib-Xaw.c (xaw_popup_menu): Add EVENT arg. | ||
| 20 | |||
| 21 | * Makefile.in (lwlib.o): Depend on lwlib-Xlw.h. | ||
| 22 | (lwlib-Xlw.o): Depend on lwlib-Xlw.h. | ||
| 23 | (lwlib-Xaw.o): Depend on lwlib-Xaw.h. | ||
| 24 | (lwlib-Xm.o): Depend on lwlib-Xm.h. | ||
| 25 | |||
| 1 | 2000-03-12 Gerd Moellmann <gerd@gnu.org> | 26 | 2000-03-12 Gerd Moellmann <gerd@gnu.org> |
| 2 | 27 | ||
| 3 | * lwlib-Xm.c (make_menubar) [LESSTIF_VERSION]: Don't set | 28 | * lwlib-Xm.c (make_menubar) [LESSTIF_VERSION]: Don't set |