summaryrefslogtreecommitdiff
path: root/lisp/erc/erc-match.el
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>2006-02-12 12:02:53 +0000
committerMiles Bader <miles@gnu.org>2006-02-12 12:02:53 +0000
commit9cc8d0b62e2f9cc8aa5754aafaf359fdfc28edef (patch)
treeffe234ff4943c026a8c304005aca02a42d96061c /lisp/erc/erc-match.el
parentf828c6fc00bac67e28840637346ddc47b5b6ee2d (diff)
downloademacs-9cc8d0b62e2f9cc8aa5754aafaf359fdfc28edef.tar.gz
emacs-9cc8d0b62e2f9cc8aa5754aafaf359fdfc28edef.tar.bz2
emacs-9cc8d0b62e2f9cc8aa5754aafaf359fdfc28edef.zip
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-73
Creator: Michael Olson <mwolson@gnu.org> Merge from erc--emacs--0
Diffstat (limited to 'lisp/erc/erc-match.el')
-rw-r--r--lisp/erc/erc-match.el18
1 files changed, 0 insertions, 18 deletions
diff --git a/lisp/erc/erc-match.el b/lisp/erc/erc-match.el
index a5e3bf88ccf..ad875ceee99 100644
--- a/lisp/erc/erc-match.el
+++ b/lisp/erc/erc-match.el
@@ -428,24 +428,6 @@ In any of the following situations, MSG is directed at an entry FOOL:
(or (erc-list-match fools-beg msg)
(erc-list-match fools-end msg))))
-(defun erc-get-parsed-vector (point)
- "Return the whole parsed vector on POINT."
- (get-text-property point 'erc-parsed))
-
-(defun erc-get-parsed-vector-nick (vect)
- "Return nickname in the parsed vector VECT."
- (let* ((untreated-nick (and vect (erc-response.sender vect)))
- (maybe-nick (when untreated-nick
- (car (split-string untreated-nick "!")))))
- (when (and (not (null maybe-nick))
- (erc-is-valid-nick-p maybe-nick))
- untreated-nick)))
-
-(defun erc-get-parsed-vector-type (vect)
- "Return message type in the parsed vector VECT."
- (and vect
- (erc-response.command vect)))
-
(defun erc-match-message ()
"Mark certain keywords in a region.
Use this defun with `erc-insert-modify-hook'."