aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2007-05-22 05:55:08 +0000
committerMiles Bader2007-05-22 05:55:08 +0000
commit698c8370d994f75b78ca711a3144f18b0a26ca89 (patch)
tree6fd61a65e0faf7e57885a6dd3eec44a65462f16c
parente6377969ed97f9434f718cfc20adcdba696ba16b (diff)
parentd51f146b480d273b4eeb4befb3da2d1f06929d9e (diff)
downloademacs-698c8370d994f75b78ca711a3144f18b0a26ca89.tar.gz
emacs-698c8370d994f75b78ca711a3144f18b0a26ca89.zip
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
-rw-r--r--admin/FOR-RELEASE15
-rw-r--r--etc/PROBLEMS15
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/net/rcirc.el11
4 files changed, 43 insertions, 4 deletions
diff --git a/admin/FOR-RELEASE b/admin/FOR-RELEASE
index 0f39e02630c..b3075723e31 100644
--- a/admin/FOR-RELEASE
+++ b/admin/FOR-RELEASE
@@ -38,12 +38,27 @@ to the hack introduced on 2005-07-01 to fix some other Cleartype problem.
38** henman@it.to-be.co.jp 09 Aug 2006: ispell.el problem on Cygwin. 38** henman@it.to-be.co.jp 09 Aug 2006: ispell.el problem on Cygwin.
39 (Did we decide that is unreproducible?) 39 (Did we decide that is unreproducible?)
40 40
41** eliz@gnu.org, May 20: EOL conversion of files in .tar archives
42
41* BUGS 43* BUGS
42 44
43NB the definitive copy of this file for Emacs 22 is on the 45NB the definitive copy of this file for Emacs 22 is on the
44EMACS_22_BASE branch. Any entries below are automatically copied from 46EMACS_22_BASE branch. Any entries below are automatically copied from
45that branch. Do not make manual changes to this file on the trunk. 47that branch. Do not make manual changes to this file on the trunk.
46 48
49** michael.ewe@arcor.de, Apr 24: 22.0.98 not starting on Solaris 10/I386
50http://lists.gnu.org/archive/html/emacs-devel/2007-04/msg01113.html
51
52* FIXES FOR EMACS 22.2
53
54Here we list small fixes that arrived too late for Emacs 22.1, but
55that should be installed on the release branch after 22.1 is released.
56
57** Changes to six pbm icons in etc/images.
58Sync change from trunk 2007-05-19.
59
60** viper and tramp should not load cl at run time.
61
47* DOCUMENTATION 62* DOCUMENTATION
48 63
49** Check the Emacs Tutorial. 64** Check the Emacs Tutorial.
diff --git a/etc/PROBLEMS b/etc/PROBLEMS
index efa2bbd2227..00bddb791c2 100644
--- a/etc/PROBLEMS
+++ b/etc/PROBLEMS
@@ -144,6 +144,21 @@ Reportedly this patch in X fixes the problem.
144 } 144 }
145 return ret; 145 return ret;
146 146
147** Emacs crashes on startup after a glibc upgrade.
148
149This is caused by a binary incompatible change to the malloc
150implementation in glibc 2.5.90-22. As a result, Emacs binaries built
151using prior versions of glibc crash when run under 2.5.90-22.
152
153This problem was first seen in pre-release versions of Fedora 7, and
154may be fixed in the final Fedora 7 release. To stop the crash from
155happening, first try upgrading to the newest version of glibc; if this
156does not work, rebuild Emacs with the same version of glibc that you
157will run it under. For details, see
158
159https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=239344
160
161
147* Crash bugs 162* Crash bugs
148 163
149** Emacs crashes in x-popup-dialog. 164** Emacs crashes in x-popup-dialog.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3d12cb346be..e7d15008676 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -3,6 +3,12 @@
3 * mail/mail-extr.el (mail-extract-address-components): Recognize 3 * mail/mail-extr.el (mail-extract-address-components): Recognize
4 non-ASCII characters except for NBSP as words. 4 non-ASCII characters except for NBSP as words.
5 5
62007-05-21 Trent Buck <trentbuck@gmail.com> (tiny change)
7
8 * net/rcirc.el (rcirc-fill-column): Allow `window-width'.
9 (rcirc-print): Handle `window-width'.
10 (rcirc-buffer-maximum-lines): Doc fix.
11
62007-05-21 Chong Yidong <cyd@stupidchicken.com> 122007-05-21 Chong Yidong <cyd@stupidchicken.com>
7 13
8 * image-mode.el (image-toggle-display): Don't clear image cache. 14 * image-mode.el (image-toggle-display): Don't clear image cache.
diff --git a/lisp/net/rcirc.el b/lisp/net/rcirc.el
index 311c052fa30..60d81aedb7a 100644
--- a/lisp/net/rcirc.el
+++ b/lisp/net/rcirc.el
@@ -95,9 +95,11 @@ Each element looks like (SERVER-REGEXP . CHANNEL-LIST)."
95 95
96(defcustom rcirc-fill-column nil 96(defcustom rcirc-fill-column nil
97 "*Column beyond which automatic line-wrapping should happen. 97 "*Column beyond which automatic line-wrapping should happen.
98If nil, use value of `fill-column'. If 'frame-width, use the 98If nil, use value of `fill-column'.
99maximum frame width." 99If `window-width', use the window's width as maximum.
100If `frame-width', use the frame's width as maximum."
100 :type '(choice (const :tag "Value of `fill-column'") 101 :type '(choice (const :tag "Value of `fill-column'")
102 (const :tag "Full window width" window-width)
101 (const :tag "Full frame width" frame-width) 103 (const :tag "Full frame width" frame-width)
102 (integer :tag "Number of columns")) 104 (integer :tag "Number of columns"))
103 :group 'rcirc) 105 :group 'rcirc)
@@ -143,8 +145,7 @@ number. If zero or nil, no truncating is done."
143 :group 'rcirc) 145 :group 'rcirc)
144 146
145(defcustom rcirc-scroll-show-maximum-output t 147(defcustom rcirc-scroll-show-maximum-output t
146 "*If non-nil, scroll buffer to keep the point at the bottom of 148 "*If non-nil, scroll buffer to keep the point at the bottom of the window."
147the window."
148 :type 'boolean 149 :type 'boolean
149 :group 'rcirc) 150 :group 'rcirc)
150 151
@@ -1245,6 +1246,8 @@ record activity."
1245 (make-string (- text-start fill-start) ?\s))) 1246 (make-string (- text-start fill-start) ?\s)))
1246 (fill-column (cond ((eq rcirc-fill-column 'frame-width) 1247 (fill-column (cond ((eq rcirc-fill-column 'frame-width)
1247 (1- (frame-width))) 1248 (1- (frame-width)))
1249 ((eq rcirc-fill-column 'window-width)
1250 (1- (window-width)))
1248 (rcirc-fill-column 1251 (rcirc-fill-column
1249 rcirc-fill-column) 1252 rcirc-fill-column)
1250 (t fill-column)))) 1253 (t fill-column))))