Function: ispell-begin-skip-region
ispell-begin-skip-region is a byte-compiled function defined in
ispell.el.gz.
Signature
(ispell-begin-skip-region SKIP-ALIST)
Documentation
Regular expression for start of regions to skip generated from SKIP-ALIST.
Each selection should be a key of SKIP-ALIST; otherwise, the current line is skipped.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defun ispell-begin-skip-region (skip-alist)
"Regular expression for start of regions to skip generated from SKIP-ALIST.
Each selection should be a key of SKIP-ALIST;
otherwise, the current line is skipped."
(mapconcat (lambda (lst) (if (stringp (car lst)) (car lst) (eval (car lst))))
skip-alist
"\\|"))