Changeset 4210 for trunk/lisp/net/rcirc.el
- Timestamp:
- 06/02/07 09:29:41 (1 year ago)
- Files:
-
- trunk/lisp/net/rcirc.el (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/net/rcirc.el
r4207 r4210 96 96 (defcustom rcirc-fill-column nil 97 97 "*Column beyond which automatic line-wrapping should happen. 98 If nil, use value of `fill-column'. If 'frame-width, use the 99 maximum frame width." 98 If nil, use value of `fill-column'. 99 If `window-width', use the window's width as maximum. 100 If `frame-width', use the frame's width as maximum." 100 101 :type '(choice (const :tag "Value of `fill-column'") 102 (const :tag "Full window width" window-width) 101 103 (const :tag "Full frame width" frame-width) 102 104 (integer :tag "Number of columns")) … … 144 146 145 147 (defcustom rcirc-scroll-show-maximum-output t 146 "*If non-nil, scroll buffer to keep the point at the bottom of 147 the window." 148 "*If non-nil, scroll buffer to keep the point at the bottom of the window." 148 149 :type 'boolean 149 150 :group 'rcirc) … … 1246 1247 (fill-column (cond ((eq rcirc-fill-column 'frame-width) 1247 1248 (1- (frame-width))) 1249 ((eq rcirc-fill-column 'window-width) 1250 (1- (window-width))) 1248 1251 (rcirc-fill-column 1249 1252 rcirc-fill-column)
