Function: ibuffer-skip-properties

ibuffer-skip-properties is a byte-compiled function defined in ibuffer.el.gz.

Signature

(ibuffer-skip-properties PROPS DIRECTION)

Source Code

;; Defined in /usr/src/emacs/lisp/ibuffer.el.gz
(defun ibuffer-skip-properties (props direction)
  (while (and (not (eobp))
	      (let ((hit nil))
		(dolist (prop props hit)
		  (when (get-text-property (point) prop)
		    (setq hit t)))))
    (forward-line direction)
    (beginning-of-line)))