[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/etc/NEWS [lexbind]
From: |
Miles Bader |
Subject: |
[Emacs-diffs] Changes to emacs/etc/NEWS [lexbind] |
Date: |
Wed, 06 Oct 2004 01:43:42 -0400 |
Index: emacs/etc/NEWS
diff -c emacs/etc/NEWS:1.690.2.46 emacs/etc/NEWS:1.690.2.47
*** emacs/etc/NEWS:1.690.2.46 Wed Oct 6 05:21:55 2004
--- emacs/etc/NEWS Wed Oct 6 05:23:58 2004
***************
*** 382,399 ****
this variable is found in `default-indicate-buffer-boundaries'.
If value is `left' or `right', both angle and arrow bitmaps are
! displayed in the left or right fringe, resp. Any other non-nil value
! causes the bitmap on the top line to be displayed in the left fringe,
! and the bitmap on the bottom line in the right fringe.
!
! If value is a cons (ANGLES . ARROWS), the car specifies the position
! of the angle bitmaps, and the cdr specifies the position of the arrow
! bitmaps.
!
! For example, (t . right) places the top angle bitmap in left fringe,
! the bottom angle bitmap in right fringe, and both arrow bitmaps in
! right fringe. To show just the angle bitmaps in the left fringe, but
! no arrow bitmaps, use (left . nil).
** New command `display-local-help' displays any local help at point
in the echo area. It is bound to `C-h .'. It normally displays the
--- 382,396 ----
this variable is found in `default-indicate-buffer-boundaries'.
If value is `left' or `right', both angle and arrow bitmaps are
! displayed in the left or right fringe, resp.
!
! Value may also be an alist which specifies the presense and position
! of each bitmap individually.
!
! For example, ((top . left) (t . right)) places the top angle bitmap
! in left fringe, the bottom angle bitmap in right fringe, and both
! arrow bitmaps in right fringe. To show just the angle bitmaps in the
! left fringe, but no arrow bitmaps, use ((top . left) (bottom . left)).
** New command `display-local-help' displays any local help at point
in the echo area. It is bound to `C-h .'. It normally displays the
***************
*** 2255,2260 ****
--- 2252,2258 ----
* Lisp Changes in Emacs 21.4
+ +++
** Major mode functions now run the new normal hook
`after-change-major-mode-hook', at their very end, after the mode hooks.
***************
*** 2462,2474 ****
+++
** Customizable fringe bitmaps
! *** New function 'define-fringe-bitmap' can now be used to change the
! built-in fringe bitmaps, as well as create new fringe bitmaps.
! The return value is a number identifying the new fringe bitmap.
!
! To change a built-in bitmap, do (require 'fringe) and identify the
! bitmap to change with the value of the corresponding symbol, like
! `left-truncation-fringe-bitmap' or `continued-line-fringe-bitmap'.
*** New function 'destroy-fringe-bitmap' may be used to destroy a
previously created bitmap, or restore a built-in bitmap.
--- 2460,2470 ----
+++
** Customizable fringe bitmaps
! *** New function 'define-fringe-bitmap' can now be used to create new
! fringe bitmaps, as well as change the built-in fringe bitmaps.
!
! To change a built-in bitmap, do (require 'fringe) and use the symbol
! identifing the bitmap such as `left-truncation or `continued-line'.
*** New function 'destroy-fringe-bitmap' may be used to destroy a
previously created bitmap, or restore a built-in bitmap.
***************
*** 2483,2489 ****
bitmap of the display line.
Format is 'display '(left-fringe BITMAP [FACE]), where BITMAP is a
! number identifying a fringe bitmap, either built-in or as returned by
`define-fringe-bitmap', and FACE is an optional face name to be used
for displaying the bitmap.
--- 2479,2485 ----
bitmap of the display line.
Format is 'display '(left-fringe BITMAP [FACE]), where BITMAP is a
! symbol identifying a fringe bitmap, either built-in or defined with
`define-fringe-bitmap', and FACE is an optional face name to be used
for displaying the bitmap.