Variable: erc-controls-remove-regexp

erc-controls-remove-regexp is a variable defined in erc-goodies.el.gz.

Value

"[]\\|[0-9]?[0-9]?\\(,[0-9][0-9]?\\)?"

Documentation

Regular expression matching control characters to remove.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-goodies.el.gz
;; These patterns were moved here to circumvent compiler warnings but
;; otherwise translated verbatim from their original string-literal
;; definitions (minus a small bug fix to satisfy newly added tests).
(defvar erc-controls-remove-regexp
  (rx (or ?\C-b ?\C-\] ?\C-_ ?\C-v ?\C-g ?\C-o
          (: ?\C-c (? (any "0-9")) (? (any "0-9"))
             (? (group ?, (any "0-9") (? (any "0-9")))))))
  "Regular expression matching control characters to remove.")