Mercurial > emacs
changeset 81023:afdc130c86d2
Merge from emacs--rel--22
Patches applied:
* emacs--rel--22 (patch 22-23)
- Update from CVS
2007-05-21 Trent Buck <trentbuck@gmail.com> (tiny change)
* lisp/net/rcirc.el (rcirc-fill-column): Allow `window-width'.
(rcirc-print): Handle `window-width'.
(rcirc-buffer-maximum-lines): Doc fix.
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-764
author | Miles Bader <miles@gnu.org> |
---|---|
date | Tue, 22 May 2007 05:55:08 +0000 |
parents | 39d96518e20d (current diff) 61e337029c36 (diff) |
children | a594bc487eb4 7489e9d44b85 |
files | admin/FOR-RELEASE lisp/ChangeLog |
diffstat | 4 files changed, 43 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/admin/FOR-RELEASE Tue May 22 02:46:34 2007 +0000 +++ b/admin/FOR-RELEASE Tue May 22 05:55:08 2007 +0000 @@ -38,12 +38,27 @@ ** henman@it.to-be.co.jp 09 Aug 2006: ispell.el problem on Cygwin. (Did we decide that is unreproducible?) +** eliz@gnu.org, May 20: EOL conversion of files in .tar archives + * BUGS NB the definitive copy of this file for Emacs 22 is on the EMACS_22_BASE branch. Any entries below are automatically copied from that branch. Do not make manual changes to this file on the trunk. +** michael.ewe@arcor.de, Apr 24: 22.0.98 not starting on Solaris 10/I386 +http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg01113.html + +* FIXES FOR EMACS 22.2 + +Here we list small fixes that arrived too late for Emacs 22.1, but +that should be installed on the release branch after 22.1 is released. + +** Changes to six pbm icons in etc/images. +Sync change from trunk 2007-05-19. + +** viper and tramp should not load cl at run time. + * DOCUMENTATION ** Check the Emacs Tutorial.
--- a/etc/PROBLEMS Tue May 22 02:46:34 2007 +0000 +++ b/etc/PROBLEMS Tue May 22 05:55:08 2007 +0000 @@ -144,6 +144,21 @@ } return ret; +** Emacs crashes on startup after a glibc upgrade. + +This is caused by a binary incompatible change to the malloc +implementation in glibc 2.5.90-22. As a result, Emacs binaries built +using prior versions of glibc crash when run under 2.5.90-22. + +This problem was first seen in pre-release versions of Fedora 7, and +may be fixed in the final Fedora 7 release. To stop the crash from +happening, first try upgrading to the newest version of glibc; if this +does not work, rebuild Emacs with the same version of glibc that you +will run it under. For details, see + +https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=239344 + + * Crash bugs ** Emacs crashes in x-popup-dialog.
--- a/lisp/ChangeLog Tue May 22 02:46:34 2007 +0000 +++ b/lisp/ChangeLog Tue May 22 05:55:08 2007 +0000 @@ -3,6 +3,12 @@ * mail/mail-extr.el (mail-extract-address-components): Recognize non-ASCII characters except for NBSP as words. +2007-05-21 Trent Buck <trentbuck@gmail.com> (tiny change) + + * net/rcirc.el (rcirc-fill-column): Allow `window-width'. + (rcirc-print): Handle `window-width'. + (rcirc-buffer-maximum-lines): Doc fix. + 2007-05-21 Chong Yidong <cyd@stupidchicken.com> * image-mode.el (image-toggle-display): Don't clear image cache.
--- a/lisp/net/rcirc.el Tue May 22 02:46:34 2007 +0000 +++ b/lisp/net/rcirc.el Tue May 22 05:55:08 2007 +0000 @@ -95,9 +95,11 @@ (defcustom rcirc-fill-column nil "*Column beyond which automatic line-wrapping should happen. -If nil, use value of `fill-column'. If 'frame-width, use the -maximum frame width." +If nil, use value of `fill-column'. +If `window-width', use the window's width as maximum. +If `frame-width', use the frame's width as maximum." :type '(choice (const :tag "Value of `fill-column'") + (const :tag "Full window width" window-width) (const :tag "Full frame width" frame-width) (integer :tag "Number of columns")) :group 'rcirc) @@ -143,8 +145,7 @@ :group 'rcirc) (defcustom rcirc-scroll-show-maximum-output t - "*If non-nil, scroll buffer to keep the point at the bottom of -the window." + "*If non-nil, scroll buffer to keep the point at the bottom of the window." :type 'boolean :group 'rcirc) @@ -1245,6 +1246,8 @@ (make-string (- text-start fill-start) ?\s))) (fill-column (cond ((eq rcirc-fill-column 'frame-width) (1- (frame-width))) + ((eq rcirc-fill-column 'window-width) + (1- (window-width))) (rcirc-fill-column rcirc-fill-column) (t fill-column))))