aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS26
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lispref/ChangeLog22
-rw-r--r--man/ChangeLog5
4 files changed, 49 insertions, 6 deletions
diff --git a/etc/NEWS b/etc/NEWS
index e5dfa809d5..c06fed6a5c 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -361,6 +361,7 @@ feature.
% emacsclient -s foo file1
% emacsclient -s bar file2
++++
** On window systems, lines which are exactly as wide as the window
(not counting the final newline character) are no longer broken into
two lines on the display (with just the newline on the second line).
@@ -370,6 +371,7 @@ cursor will be displayed in the fringe when positioned on that newline.
The new user option 'overflow-newline-into-fringe' may be set to nil to
revert to the old behaviour of continuing such lines.
++++
** The buffer boundaries (i.e. first and last line in the buffer) may
now be marked with angle bitmaps in the fringes. In addition, up and
down arrow bitmaps may be shown at the top and bottom of the left or
@@ -2320,9 +2322,11 @@ operation.
if the file is indeed remote. (Before, the return value was t in
this case.)
++++
** The display space :width and :align-to text properties are now
supported on text terminals.
++++
** Support for displaying image slices
*** New display property (slice X Y WIDTH HEIGHT) may be used with
@@ -2334,6 +2338,7 @@ specify image slice (X Y WIDTH HEIGHT).
*** New function insert-sliced-image inserts a given image as a
specified number of evenly sized slices (rows x columns).
++++
** New line-height and line-spacing properties for newline characters
A newline may now have line-height and line-spacing text or overlay
@@ -2370,10 +2375,10 @@ any of the forms described above, the value of SPACING is used as the
total height of the line, i.e. a varying number of pixels are inserted
after each line to make each line exactly that many pixels high.
-
** The buffer local line-spacing variable may now have a float value,
which is used as a height relative to the default frame line height.
++++
** Enhancements to stretch display properties
The display property stretch specification form `(space PROPS)', where
@@ -2430,6 +2435,7 @@ height) of the specified image.
The form `(+ EXPR ...)' adds up the value of the expressions.
The form `(- EXPR ...)' negates or subtracts the value of the expressions.
++++
** Normally, the cursor is displayed at the end of any overlay and
text property string that may be present at the current window
position. The cursor may now be placed on any character of such
@@ -2447,7 +2453,10 @@ a terminal that supports at least this many colors. This is now the
preferred method for defining default faces in a way that makes a good
use of the capabilities of the display.
-** New function 'define-fringe-bitmap' can now be used to change the
++++
+** 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.
@@ -2455,15 +2464,15 @@ 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
+*** New function 'destroy-fringe-bitmap' may be used to destroy a
previously created bitmap, or restore a built-in bitmap.
-** New function 'set-fringe-bitmap-face' can now be used to set a
+*** New function 'set-fringe-bitmap-face' can now be used to set a
specific face to be used for a specific fringe bitmap. Normally,
this should be a face derived from the `fringe' face, specifying
the foreground color as the desired color of the bitmap.
-** There are new display properties, left-fringe and right-fringe,
+*** There are new display properties, left-fringe and right-fringe,
that can be used to show a specific bitmap in the left or right fringe
bitmap of the display line.
@@ -2472,7 +2481,7 @@ 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.
-** New function `fringe-bitmaps-at-pos' returns a cons (LEFT . RIGHT)
+*** New function `fringe-bitmaps-at-pos' returns a cons (LEFT . RIGHT)
identifying the current fringe bitmaps in the display line at a given
buffer position. A nil value means no bitmap.
@@ -2539,18 +2548,23 @@ return value of `get-char-property' called with those arguments and
whose cdr is the overlay in which the property was found, or nil if
it was found as a text property or not found at all.
++++ (lispref)
+??? (man)
** The mouse pointer shape in void text areas (i.e. after the end of a
line or below the last line in the buffer) of the text window is now
controlled by the new variable `void-text-area-pointer'. The default
is to use the `arrow' (non-text) pointer. Other choices are `text'
(or nil), `hand', `vdrag', `hdrag', `modeline', and `hourglass'.
++++
** The mouse pointer shape over an image can now be controlled by the
:pointer image property.
++++
** The mouse pointer shape over ordinary text or images may now be
controlled/overriden via the `pointer' text property.
++++
** Images may now have an associated image map via the :map property.
An image map is an alist where each element has the format (AREA ID PLIST).
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4efd5bb6fd..24bceedc33 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
2004-09-23 Kim F. Storm <[email protected]>
+ * image.el (insert-sliced-image): Add doc string.
+
* ido.el (ido-choice-list): New dynamic var for `list' context.
(ido-context-switch-command): New dynamic var.
(ido-define-mode-map): Generalize switch between file/buffer contexts.
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index 994f3b3199..b6819c9b16 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,25 @@
+2004-09-23 Kim F. Storm <[email protected]>
+
+ * text.texi (Special Properties): Add `cursor', `pointer',
+ `line-height', and `line-spacing' properties.
+
+ * display.texi (Display): Add 'Fringe Bitmaps' and 'Pointer
+ Shapes' to menu.
+ (Standard Faces): Doc fix for fringe face.
+ (Fringes): Add `overflow-newline-into-fringe' and
+ 'indicate-buffer-boundaries'.
+ (Fringe Bitmaps, Pointer Shapes): New nodes.
+ (Display Property): Add 'Pixel Specification' and 'Display Fringe
+ Bitmaps' to menu.
+ (Specified Space): Describe pixel width and height.
+ (Pixel Specification): New node.
+ (Other Display Specs): Add `slice' property.
+ (Display Fringe Bitmaps): New node.
+ (Images): Add 'Image Slices' to menu.
+ (Image Descriptors): Add `:pointer' and `:map' properties.
+ (Showing Images): Add slice arg to `insert-image'. Add
+ 'insert-sliced-image'.
+
2004-09-20 Richard M. Stallman <[email protected]>
* commands.texi (Key Sequence Input):
diff --git a/man/ChangeLog b/man/ChangeLog
index 2e59da4e0f..10320ef7de 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,8 @@
+2004-09-23 Kim F. Storm <[email protected]>
+
+ * display.texi (Display Custom): Add `overflow-newline-into-fringe',
+ `indicate-buffer-boundaries' and `default-indicate-buffer-boundaries'.
+
2004-09-20 Richard M. Stallman <[email protected]>
* custom.texi (Hooks): Explain using setq to clear out a hook.