From: Daiki Ueno Date: Tue, 31 Aug 2004 08:37:04 +0000 (+0000) Subject: * riece.el (riece-command-mode): Set truncate-lines to nil. X-Git-Url: https://cgit.sxemacs.org/?p=riece;a=commitdiff_plain;h=555c36164b1a03216636d28748eaa910b429ddba * riece.el (riece-command-mode): Set truncate-lines to nil. (riece-dialogue-mode): Ditto. (riece-channel-list-mode): Make truncate-partial-width-windows local to channel buffers and set it to nil. (riece-user-list-mode): Ditto. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5c10c44..e95770e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2004-08-31 Daiki Ueno + + * riece.el (riece-command-mode): Set truncate-lines to nil. + (riece-dialogue-mode): Ditto. + (riece-channel-list-mode): Make + truncate-partial-width-windows local to channel buffers and set it + to nil. + (riece-user-list-mode): Ditto. + 2004-08-31 Daiki Ueno * riece.el (riece-dialogue-mode): Make diff --git a/lisp/riece.el b/lisp/riece.el index 4622c83..33d3030 100644 --- a/lisp/riece.el +++ b/lisp/riece.el @@ -368,7 +368,12 @@ For a list of the generic commands type \\[riece-command-generic] ? RET. (interactive) (kill-all-local-variables) + ;; Make `truncate-partial-width-windows' buffer local and set it to + ;; nil. This causes `truncate-lines' to directly control line + ;; truncation. (make-local-variable 'truncate-partial-width-windows) + (setq truncate-partial-width-windows nil) + (setq riece-away-indicator "-" riece-operator-indicator "-" major-mode 'riece-command-mode @@ -382,7 +387,7 @@ For a list of the generic commands type \\[riece-command-generic] ? RET. riece-user-indicator " " riece-channel-indicator)) - truncate-partial-width-windows nil) + truncate-lines nil) (riece-simplify-mode-line-format) (use-local-map riece-command-mode-map) @@ -404,7 +409,12 @@ Instead, these commands are available: (kill-all-local-variables) (make-local-variable 'riece-freeze) (make-local-variable 'riece-freeze-indicator) + + ;; Make `truncate-partial-width-windows' buffer local and set it to + ;; nil. This causes `truncate-lines' to directly control line truncation. (make-local-variable 'truncate-partial-width-windows) + (setq truncate-partial-width-windows nil) + (setq riece-freeze riece-default-freeze riece-away-indicator "-" riece-operator-indicator "-" @@ -418,8 +428,8 @@ Instead, these commands are available: riece-freeze-indicator " " riece-channel-list-indicator " ")) - buffer-read-only t - truncate-partial-width-windows nil) + truncate-lines nil + buffer-read-only t) (riece-simplify-mode-line-format) (use-local-map riece-dialogue-mode-map) (buffer-disable-undo) @@ -453,6 +463,12 @@ Instead, these commands are available: All normal editing commands are turned off." (kill-all-local-variables) (buffer-disable-undo) + + ;; Make `truncate-partial-width-windows' buffer local and set it to + ;; nil. This causes `truncate-lines' to directly control line truncation. + (make-local-variable 'truncate-partial-width-windows) + (setq truncate-partial-width-windows nil) + (setq major-mode 'riece-channel-list-mode mode-name "Channels" mode-line-buffer-identification @@ -472,6 +488,12 @@ Instead, these commands are available: \\{riece-user-list-mode-map}" (kill-all-local-variables) (buffer-disable-undo) + + ;; Make `truncate-partial-width-windows' buffer local and set it to + ;; nil. This causes `truncate-lines' to directly control line truncation. + (make-local-variable 'truncate-partial-width-windows) + (setq truncate-partial-width-windows nil) + (setq major-mode 'riece-user-list-mode mode-name "Users" mode-line-buffer-identification