Mercurial > emacs
comparison etc/NEWS @ 57273:e267776b7fb2
*** empty log message ***
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Wed, 29 Sep 2004 12:39:27 +0000 |
parents | 5042f9ef1859 |
children | 360e84818bf3 6c1af301b455 |
comparison
equal
deleted
inserted
replaced
57272:3b33351faee0 | 57273:e267776b7fb2 |
---|---|
380 This behavior is activated by setting the buffer-local variable | 380 This behavior is activated by setting the buffer-local variable |
381 `indicate-buffer-boundaries' to a non-nil value. The default value of | 381 `indicate-buffer-boundaries' to a non-nil value. The default value of |
382 this variable is found in `default-indicate-buffer-boundaries'. | 382 this variable is found in `default-indicate-buffer-boundaries'. |
383 | 383 |
384 If value is `left' or `right', both angle and arrow bitmaps are | 384 If value is `left' or `right', both angle and arrow bitmaps are |
385 displayed in the left or right fringe, resp. Any other non-nil value | 385 displayed in the left or right fringe, resp. |
386 causes the bitmap on the top line to be displayed in the left fringe, | 386 |
387 and the bitmap on the bottom line in the right fringe. | 387 Value may also be an alist which specifies the presense and position |
388 | 388 of each bitmap individually. |
389 If value is a cons (ANGLES . ARROWS), the car specifies the position | 389 |
390 of the angle bitmaps, and the cdr specifies the position of the arrow | 390 For example, ((top . left) (t . right)) places the top angle bitmap |
391 bitmaps. | 391 in left fringe, the bottom angle bitmap in right fringe, and both |
392 | 392 arrow bitmaps in right fringe. To show just the angle bitmaps in the |
393 For example, (t . right) places the top angle bitmap in left fringe, | 393 left fringe, but no arrow bitmaps, use ((top . left) (bottom . left)). |
394 the bottom angle bitmap in right fringe, and both arrow bitmaps in | |
395 right fringe. To show just the angle bitmaps in the left fringe, but | |
396 no arrow bitmaps, use (left . nil). | |
397 | 394 |
398 ** New command `display-local-help' displays any local help at point | 395 ** New command `display-local-help' displays any local help at point |
399 in the echo area. It is bound to `C-h .'. It normally displays the | 396 in the echo area. It is bound to `C-h .'. It normally displays the |
400 same string that would be displayed on mouse-over using the | 397 same string that would be displayed on mouse-over using the |
401 `help-echo' property, but, in certain cases, it can display a more | 398 `help-echo' property, but, in certain cases, it can display a more |
2461 use of the capabilities of the display. | 2458 use of the capabilities of the display. |
2462 | 2459 |
2463 +++ | 2460 +++ |
2464 ** Customizable fringe bitmaps | 2461 ** Customizable fringe bitmaps |
2465 | 2462 |
2466 *** New function 'define-fringe-bitmap' can now be used to change the | 2463 *** New function 'define-fringe-bitmap' can now be used to create new |
2467 built-in fringe bitmaps, as well as create new fringe bitmaps. | 2464 fringe bitmaps, as well as change the built-in fringe bitmaps. |
2468 The return value is a number identifying the new fringe bitmap. | 2465 |
2469 | 2466 To change a built-in bitmap, do (require 'fringe) and use the symbol |
2470 To change a built-in bitmap, do (require 'fringe) and identify the | 2467 identifing the bitmap such as `left-truncation or `continued-line'. |
2471 bitmap to change with the value of the corresponding symbol, like | |
2472 `left-truncation-fringe-bitmap' or `continued-line-fringe-bitmap'. | |
2473 | 2468 |
2474 *** New function 'destroy-fringe-bitmap' may be used to destroy a | 2469 *** New function 'destroy-fringe-bitmap' may be used to destroy a |
2475 previously created bitmap, or restore a built-in bitmap. | 2470 previously created bitmap, or restore a built-in bitmap. |
2476 | 2471 |
2477 *** New function 'set-fringe-bitmap-face' can now be used to set a | 2472 *** New function 'set-fringe-bitmap-face' can now be used to set a |
2482 *** There are new display properties, left-fringe and right-fringe, | 2477 *** There are new display properties, left-fringe and right-fringe, |
2483 that can be used to show a specific bitmap in the left or right fringe | 2478 that can be used to show a specific bitmap in the left or right fringe |
2484 bitmap of the display line. | 2479 bitmap of the display line. |
2485 | 2480 |
2486 Format is 'display '(left-fringe BITMAP [FACE]), where BITMAP is a | 2481 Format is 'display '(left-fringe BITMAP [FACE]), where BITMAP is a |
2487 number identifying a fringe bitmap, either built-in or as returned by | 2482 symbol identifying a fringe bitmap, either built-in or defined with |
2488 `define-fringe-bitmap', and FACE is an optional face name to be used | 2483 `define-fringe-bitmap', and FACE is an optional face name to be used |
2489 for displaying the bitmap. | 2484 for displaying the bitmap. |
2490 | 2485 |
2491 *** New function `fringe-bitmaps-at-pos' returns a cons (LEFT . RIGHT) | 2486 *** New function `fringe-bitmaps-at-pos' returns a cons (LEFT . RIGHT) |
2492 identifying the current fringe bitmaps in the display line at a given | 2487 identifying the current fringe bitmaps in the display line at a given |