aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2007-10-20 02:21:09 +0000
committerMiles Bader2007-10-20 02:21:09 +0000
commitf76840f36cf60feecaf21d55d24ace948800fef7 (patch)
treec5ab476f04b868ae02fa0f22c8be8eb31aaf4955
parentc3bb6fdbcbdb076b95055efd3e07c08ad77eb8f6 (diff)
parent5255e3ffc735b58bc314e2886b11e1b9ff489b22 (diff)
downloademacs-f76840f36cf60feecaf21d55d24ace948800fef7.tar.gz
emacs-f76840f36cf60feecaf21d55d24ace948800fef7.zip
Merge from emacs--rel--22
Patches applied: * emacs--rel--22 (patch 129-130) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 259-260) - Merge from emacs--rel--22 - Update from CVS Revision: emacs@sv.gnu.org/emacs--devo--0--patch-900
-rw-r--r--admin/nt/README.W3226
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/bs.el3
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/nnmail.el6
5 files changed, 42 insertions, 3 deletions
diff --git a/admin/nt/README.W32 b/admin/nt/README.W32
index 4b2cc4edc98..4c74f12f96c 100644
--- a/admin/nt/README.W32
+++ b/admin/nt/README.W32
@@ -64,6 +64,32 @@
64 (non-windowed) mode of operation is most useful if you have a telnet 64 (non-windowed) mode of operation is most useful if you have a telnet
65 server on your machine, allowing you to run Emacs remotely. 65 server on your machine, allowing you to run Emacs remotely.
66 66
67* Image support
68
69 Emacs has built in support for XBM and PPM/PGM/PBM images, and the
70 libXpm library is bundled, providing XPM support (required for color
71 toolbar icons and splash screen).
72
73 Emacs can also support some other image formats with appropriate
74 libraries. These libraries are all available as part of GTK, or from
75 gnuwin32.sourceforge.net. Emacs will find them if the directory they
76 are installed in is on the PATH.
77
78 PNG: requires the PNG reference library 1.2 or later, which will
79 be named libpng13d.dll, libpng13.dll, libpng12d.dll, libpng12.dll
80 or libpng.dll. LibPNG requires zlib, which should come from the same
81 source as you got libpng.
82
83 JPEG: requires the Independant JPEG Group's libjpeg 6b or later,
84 which will be called jpeg62.dll, libjpeg.dll, jpeg-62.dll or jpeg.dll.
85
86 TIFF: requires libTIFF 3.0 or later, which will be called libtiff3.dll
87 or libtiff.dll.
88
89 GIF: requires libungif or giflib 4.1 or later, which will be
90 called giflib4.dll, libungif4.dll or libungif.dll.
91
92
67* Uninstalling Emacs 93* Uninstalling Emacs
68 94
69 If you should need to uninstall Emacs, simply delete all the files and 95 If you should need to uninstall Emacs, simply delete all the files and
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d831ea839e8..8ea68f0da04 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-10-19 Juanma Barranquero <lekktu@gmail.com>
2
3 * bs.el (bs--track-window-changes): Don't refresh the whole list.
4 (bs-mode): Set mode-class property to special.
5
12007-10-20 Stefan Monnier <monnier@iro.umontreal.ca> 62007-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * diff-mode.el (diff-auto-refine): New var. 8 * diff-mode.el (diff-auto-refine): New var.
diff --git a/lisp/bs.el b/lisp/bs.el
index bb2dbae83c0..105e5702bcc 100644
--- a/lisp/bs.el
+++ b/lisp/bs.el
@@ -612,7 +612,6 @@ Used from `window-size-change-functions'."
612 (let ((win (get-buffer-window "*buffer-selection*" frame))) 612 (let ((win (get-buffer-window "*buffer-selection*" frame)))
613 (when win 613 (when win
614 (with-selected-window win 614 (with-selected-window win
615 (bs-refresh)
616 (bs--set-window-height))))) 615 (bs--set-window-height)))))
617 616
618(defun bs--remove-hooks () 617(defun bs--remove-hooks ()
@@ -622,6 +621,8 @@ Used from `window-size-change-functions'."
622 (remove-hook 'kill-buffer-hook 'bs--remove-hooks t) 621 (remove-hook 'kill-buffer-hook 'bs--remove-hooks t)
623 (remove-hook 'change-major-mode-hook 'bs--remove-hooks t)) 622 (remove-hook 'change-major-mode-hook 'bs--remove-hooks t))
624 623
624(put 'bs-mode 'mode-class 'special)
625
625(define-derived-mode bs-mode nil "Buffer-Selection-Menu" 626(define-derived-mode bs-mode nil "Buffer-Selection-Menu"
626 "Major mode for editing a subset of Emacs' buffers. 627 "Major mode for editing a subset of Emacs' buffers.
627\\<bs-mode-map> 628\\<bs-mode-map>
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 59a32921dc5..5f49f2dc81a 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12007-10-18 Katsumi Yamaoka <yamaoka@jpl.org>
2
3 * nnmail.el (nnmail-fancy-expiry-target): Use rmail-dont-reply-to to
4 exclude address matching message-dont-reply-to-names.
5
12007-10-15 Katsumi Yamaoka <yamaoka@jpl.org> 62007-10-15 Katsumi Yamaoka <yamaoka@jpl.org>
2 7
3 * gnus-util.el (gnus-string<): New function. 8 * gnus-util.el (gnus-string<): New function.
diff --git a/lisp/gnus/nnmail.el b/lisp/gnus/nnmail.el
index 71a528c0f0b..35f5476f9b4 100644
--- a/lisp/gnus/nnmail.el
+++ b/lisp/gnus/nnmail.el
@@ -1900,8 +1900,10 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
1900 ;; To or From header 1900 ;; To or From header
1901 ((and (equal header 'to-from) 1901 ((and (equal header 'to-from)
1902 (or (string-match (cadr regexp-target-pair) from) 1902 (or (string-match (cadr regexp-target-pair) from)
1903 (and (string-match message-dont-reply-to-names from) 1903 (and (string-match (cadr regexp-target-pair) to)
1904 (string-match (cadr regexp-target-pair) to)))) 1904 (let ((rmail-dont-reply-to-names
1905 message-dont-reply-to-names))
1906 (equal (rmail-dont-reply-to from) "")))))
1905 (setq target (format-time-string (caddr regexp-target-pair) date))) 1907 (setq target (format-time-string (caddr regexp-target-pair) date)))
1906 ((and (not (equal header 'to-from)) 1908 ((and (not (equal header 'to-from))
1907 (string-match (cadr regexp-target-pair) 1909 (string-match (cadr regexp-target-pair)