aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/NEWS27
2 files changed, 31 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 0e021c8707c..dcb73156d7e 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -2,6 +2,10 @@
2 2
3 * HELLO: Change designation sequences for Arabic text. 3 * HELLO: Change designation sequences for Arabic text.
4 4
52010-08-23 Michael Albinus <michael.albinus@gmx.de>
6
7 * NEWS: dbus.el supports alternative buses.
8
52010-08-14 Eli Zaretskii <eliz@gnu.org> 92010-08-14 Eli Zaretskii <eliz@gnu.org>
6 10
7 * tutorials/TUTORIAL.he: Use MAQAF instead of hyphen where appropriate. 11 * tutorials/TUTORIAL.he: Use MAQAF instead of hyphen where appropriate.
diff --git a/etc/NEWS b/etc/NEWS
index ad4c9938bd0..ca03f89bc39 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -59,6 +59,10 @@ automatically select it.
59 59
60* Startup Changes in Emacs 24.1 60* Startup Changes in Emacs 24.1
61 61
62** The --unibyte, --multibyte, --no-multibyte, and --no-unibyte
63command line arguments no longer have any effect. (They were declared
64obsolete in Emacs 23.)
65
62 66
63* Changes in Emacs 24.1 67* Changes in Emacs 24.1
64 68
@@ -109,6 +113,22 @@ The frame-parameter tool-bar-position controls this. It takes the values
109top, left, right or bottom. The Options => Show/Hide menu has entries 113top, left, right or bottom. The Options => Show/Hide menu has entries
110for this. 114for this.
111 115
116** ImageMagick support
117It is now possible to use the Imagemagick library to load many new
118image formats in Emacs.
119
120To enable, use the following configure option:
121--with-imagemagick
122
123The new function (imagemagick-types) returns a list of image file
124extensions that your installation of imagemagick supports.
125
126The function (imagemagick-register-types) will enable the imagemagick
127support for the extensions in imagemagick-types minus the types listed
128in imagemagick-types-inhibit.
129
130See the Emacs Manual for more information.
131
112** The colors for selected text (the region face) are taken from the GTK 132** The colors for selected text (the region face) are taken from the GTK
113theme when Emacs is built with GTK. 133theme when Emacs is built with GTK.
114 134
@@ -393,6 +413,11 @@ enabled by default in 23.1.
393supports multithread non-stop debugging and debugging of several 413supports multithread non-stop debugging and debugging of several
394threads simultaneously. 414threads simultaneously.
395 415
416** D-Bus
417
418*** It is possible now, to access alternative buses than the default
419system or session bus.
420
396 421
397* New Modes and Packages in Emacs 24.1 422* New Modes and Packages in Emacs 24.1
398 423
@@ -437,6 +462,8 @@ has now been removed.
437 462
438* Lisp changes in Emacs 24.1 463* Lisp changes in Emacs 24.1
439 464
465** New hook post-self-insert-hook run at the end of self-insert-command.
466
440** Syntax tables support a new "comment style c" additionally to style b. 467** Syntax tables support a new "comment style c" additionally to style b.
441** frame-local variables cannot be let-bound any more. 468** frame-local variables cannot be let-bound any more.
442** prog-mode is a new major-mode meant to be the parent of programming mode. 469** prog-mode is a new major-mode meant to be the parent of programming mode.