Function: proced-marker-regexp

proced-marker-regexp is a byte-compiled function defined in proced.el.gz.

Signature

(proced-marker-regexp)

Documentation

Return regexp matching proced-marker-char.

Source Code

;; Defined in /usr/src/emacs/lisp/proced.el.gz
(defun proced-marker-regexp ()
  "Return regexp matching `proced-marker-char'."
  ;; `proced-marker-char' must appear in column zero
  (concat "^" (regexp-quote (char-to-string proced-marker-char))))