comparison lisp/erc/erc-track.el @ 75259:f45c5edf0be4

Merge from erc--main--0 Highlights: - Display messages starting with "/" but are not commands correctly. - Add erc-capab.el file, with capab-identify module. - Fix various ERC menu bugs and add "Current channel" submenu. - Make header-line display look nicer. - Fix warning when auto-authenticating to bitlbee. - New option erc-system-name allows the hostname next to your nick to be customized. Revision: emacs@sv.gnu.org/emacs--devo--0--patch-599 Creator: Michael Olson <mwolson@gnu.org>
author Miles Bader <miles@gnu.org>
date Wed, 17 Jan 2007 18:17:25 +0000
parents bc5d69739d5e
children 7a3f13e2dd57
comparison
equal deleted inserted replaced
75258:38cd68f9ba51 75259:f45c5edf0be4
771 (put-text-property 3 (length str) 771 (put-text-property 3 (length str)
772 'face '(bold erc-current-nick-face) 772 'face '(bold erc-current-nick-face)
773 str) 773 str)
774 (erc-faces-in str))) 774 (erc-faces-in str)))
775 775
776 (defun erc-find-parsed-property ()
777 "Find the next occurrence of the `erc-parsed' text property."
778 (text-property-not-all (point-min) (point-max) 'erc-parsed nil))
779
780 ;;; Buffer switching 776 ;;; Buffer switching
781 777
782 (defvar erc-track-last-non-erc-buffer nil 778 (defvar erc-track-last-non-erc-buffer nil
783 "Stores the name of the last buffer you were in before activating 779 "Stores the name of the last buffer you were in before activating
784 `erc-track-switch-buffers'") 780 `erc-track-switch-buffers'")