aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/emacs/ChangeLog8
-rw-r--r--doc/emacs/maintaining.texi2
-rw-r--r--doc/misc/tramp.texi6
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/gnus/ChangeLog2
-rw-r--r--lisp/term/w32-win.el4
6 files changed, 22 insertions, 6 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 099abd58a3f..5f416f61612 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,11 @@
12008-02-02 Eli Zaretskii <eliz@gnu.org>
2
3 * maintaining.texi (Tags): Fix last change.
4
52008-02-02 Michael Albinus <michael.albinus@gmx.de>
6
7 * tramp.texi: Use new FSF's Back-Cover Text.
8
12008-01-31 Nick Roberts <nickrob@snap.net.nz> 92008-01-31 Nick Roberts <nickrob@snap.net.nz>
2 10
3 * trouble.texi (Checklist): Direct users to emacs-devel@gnu.org. 11 * trouble.texi (Checklist): Direct users to emacs-devel@gnu.org.
diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi
index 7106a380d03..d4774379555 100644
--- a/doc/emacs/maintaining.texi
+++ b/doc/emacs/maintaining.texi
@@ -130,7 +130,7 @@ Of course, you should substitute the proper years and copyright holder.
130 130
131@node Tags 131@node Tags
132@section Tags Tables 132@section Tags Tables
133@cindex tag tables 133@cindex tags and tag tables
134 134
135 A @dfn{tags table} is a description of how a multi-file program is 135 A @dfn{tags table} is a description of how a multi-file program is
136broken up into files. It lists the names of the component files and the 136broken up into files. It lists the names of the component files and the
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 331ec594bf0..f5151d3ac7b 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -50,9 +50,9 @@ Manual'', and with the Back-Cover Texts as in (a) below. A copy of the
50license is included in the section entitled ``GNU Free Documentation 50license is included in the section entitled ``GNU Free Documentation
51License'' in the Emacs manual. 51License'' in the Emacs manual.
52 52
53(a) The FSF's Back-Cover Text is: ``You have freedom to copy and modify 53(a) The FSF's Back-Cover Text is: ``You have the freedom to
54this GNU Manual, like GNU software. Copies published by the Free 54copy and modify this GNU manual. Buying copies from the FSF
55Software Foundation raise funds for GNU development.'' 55supports it in developing GNU and promoting software freedom.''
56 56
57This document is part of a collection distributed under the GNU Free 57This document is part of a collection distributed under the GNU Free
58Documentation License. If you want to distribute this document 58Documentation License. If you want to distribute this document
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fc138506d79..3e20def85e3 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12008-02-03 Juanma Barranquero <lekktu@gmail.com>
2
3 * term/w32-win.el (image-library-alist): Prefer libpng12 to libpng13,
4 because the latter is in fact a 1.2.8 build distributed with GTK+ (as
5 of today, the most recent libpng is 1.2.24).
6
12008-02-03 Michael Albinus <michael.albinus@gmx.de> 72008-02-03 Michael Albinus <michael.albinus@gmx.de>
2 8
3 * ediff-util.el (ediff-compute-custom-diffs-maybe): Handle remote 9 * ediff-util.el (ediff-compute-custom-diffs-maybe): Handle remote
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 6cadea3beb7..fd659b8a2db 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -108,7 +108,7 @@
1082008-02-01 Dave Love <fx@gnu.org> 1082008-02-01 Dave Love <fx@gnu.org>
109 109
110 * mm-util.el (mm-mule4-p, mm-enable-multibyte-mule4) 110 * mm-util.el (mm-mule4-p, mm-enable-multibyte-mule4)
111 (mm-disable-multibyte-mule4) 111 (mm-disable-multibyte-mule4)
112 (mm-with-unibyte-current-buffer-mule4): Deleted. 112 (mm-with-unibyte-current-buffer-mule4): Deleted.
113 113
114 * gnus-sum.el (gnus-summary-mode, gnus-summary-display-article) 114 * gnus-sum.el (gnus-summary-mode, gnus-summary-display-article)
diff --git a/lisp/term/w32-win.el b/lisp/term/w32-win.el
index a9bd19f9a3d..62fd6edd919 100644
--- a/lisp/term/w32-win.el
+++ b/lisp/term/w32-win.el
@@ -1111,7 +1111,9 @@ pop-up menu are unaffected by `w32-list-proportional-fonts')."
1111;;; Set default known names for image libraries 1111;;; Set default known names for image libraries
1112(setq image-library-alist 1112(setq image-library-alist
1113 '((xpm "libxpm.dll" "xpm4.dll" "libXpm-nox4.dll") 1113 '((xpm "libxpm.dll" "xpm4.dll" "libXpm-nox4.dll")
1114 (png "libpng13d.dll" "libpng13.dll" "libpng12d.dll" "libpng12.dll" "libpng.dll") 1114 (png "libpng12d.dll" "libpng12.dll" "libpng.dll"
1115 ;; these are libpng 1.2.8 from GTK+
1116 "libpng13d.dll" "libpng13.dll")
1115 (jpeg "jpeg62.dll" "libjpeg.dll" "jpeg-62.dll" "jpeg.dll") 1117 (jpeg "jpeg62.dll" "libjpeg.dll" "jpeg-62.dll" "jpeg.dll")
1116 (tiff "libtiff3.dll" "libtiff.dll") 1118 (tiff "libtiff3.dll" "libtiff.dll")
1117 (gif "giflib4.dll" "libungif4.dll" "libungif.dll") 1119 (gif "giflib4.dll" "libungif4.dll" "libungif.dll")