# HG changeset patch # User Miles Bader # Date 1142244609 0 # Node ID 1527bb09ec303957a304748d34a46ad1676a8ecd # Parent df75d16d140e7d28a3b0753161f8f4b00e94b0f3 Revision: emacs@sv.gnu.org/emacs--devo--0--patch-156 rcirc.el update from Ryan Yeske 2006-03-13 Ryan Yeske * lisp/net/rcirc.el (rcirc) : Add link to manual. (rcirc-print): Mark the start of text at the end of the prompt. (rcirc-track-minor-mode): Add autoload cookie. (rcirc-update-activity-string): Add space to front of mode-line indicator. diff -r df75d16d140e -r 1527bb09ec30 lisp/ChangeLog --- a/lisp/ChangeLog Mon Mar 13 10:01:06 2006 +0000 +++ b/lisp/ChangeLog Mon Mar 13 10:10:09 2006 +0000 @@ -1,3 +1,11 @@ +2006-03-13 Ryan Yeske + + * net/rcirc.el (rcirc) : Add link to manual. + (rcirc-print): Mark the start of text at the end of the prompt. + (rcirc-track-minor-mode): Add autoload cookie. + (rcirc-update-activity-string): Add space to front of mode-line + indicator. + 2006-03-13 Miles Bader * net/rcirc.el (rcirc-nick-abbrevs): Variable removed. diff -r df75d16d140e -r 1527bb09ec30 lisp/net/rcirc.el --- a/lisp/net/rcirc.el Mon Mar 13 10:01:06 2006 +0000 +++ b/lisp/net/rcirc.el Mon Mar 13 10:10:09 2006 +0000 @@ -50,6 +50,7 @@ "Simple IRC client." :version "22.1" :prefix "rcirc-" + :link '(custom-manual "(rcirc)") :group 'applications) (defcustom rcirc-server "irc.freenode.net" @@ -872,7 +873,7 @@ (defun rcirc-multiline-edit-submit () "Send the text in buffer back to parent buffer." (interactive) - (assert (and (eq major-mode 'rcirc-multiline-edit-mode))) + (assert (eq major-mode 'rcirc-multiline-edit-mode)) (assert rcirc-parent-buffer) (untabify (point-min) (point-max)) (let ((text (buffer-substring (point-min) (point-max))) @@ -888,7 +889,7 @@ (defun rcirc-multiline-edit-cancel () "Cancel the multiline edit." (interactive) - (assert (and (eq major-mode 'rcirc-multiline-edit-mode))) + (assert (eq major-mode 'rcirc-multiline-edit-mode)) (kill-buffer (current-buffer)) (set-window-configuration rcirc-window-configuration)) @@ -1077,7 +1078,7 @@ (set-marker text-start (or (next-single-property-change fill-start 'rcirc-text) - (point-max))) + rcirc-prompt-end-marker)) ;; squeeze spaces out of text before rcirc-text (fill-region fill-start (1- text-start)) @@ -1242,9 +1243,7 @@ (define-key rcirc-track-minor-mode-map (kbd "C-c C-@") 'rcirc-next-active-buffer) (define-key rcirc-track-minor-mode-map (kbd "C-c C-SPC") 'rcirc-next-active-buffer) -;;; FIXME: the code to insert `rcirc-activity-string' into -;;; `global-mode-string' isn't called when the mode is activated by -;;; customize. I don't know how to set that up. +;;;###autoload (define-minor-mode rcirc-track-minor-mode "Global minor mode for tracking activity in rcirc buffers." :init-value nil @@ -1346,7 +1345,7 @@ (setq rcirc-activity-string (if (not rcirc-activity) "" - (concat " [" + (concat "-[" (mapconcat (lambda (b) (let ((s (rcirc-short-buffer-name b))) @@ -1355,7 +1354,7 @@ s (rcirc-facify s 'rcirc-mode-line-nick))))) rcirc-activity ",") - "]")))) + "]-")))) (defun rcirc-short-buffer-name (buffer) "Return a short name for BUFFER to use in the modeline indicator."