Function: erc-cmd-LASTLOG
erc-cmd-LASTLOG is a byte-compiled function defined in erc.el.gz.
Signature
(erc-cmd-LASTLOG LINE)
Documentation
Show all lines in the current buffer matching the regexp LINE.
If a match spreads across multiple lines, all those lines are shown.
The lines are shown in a buffer named *Occur*.
It serves as a menu to find any of the occurrences in this buffer.
C-h m (describe-mode) in that buffer will explain how.
If LINE contains upper case characters (excluding those preceded by \),
the matching is case-sensitive.
Source Code
;; Defined in /usr/src/emacs/lisp/erc/erc.el.gz
(defun erc-cmd-LASTLOG (line)
"Show all lines in the current buffer matching the regexp LINE.
If a match spreads across multiple lines, all those lines are shown.
The lines are shown in a buffer named `*Occur*'.
It serves as a menu to find any of the occurrences in this buffer.
\\[describe-mode] in that buffer will explain how.
If LINE contains upper case characters (excluding those preceded by `\\'),
the matching is case-sensitive."
(occur line)
t)