Function: erc-word-at-arg-p

erc-word-at-arg-p is a byte-compiled function defined in erc-backend.el.gz.

Signature

(erc-word-at-arg-p POS)

Documentation

Report whether the char after a given POS has word syntax.

If POS is out of range, the value is nil.

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-backend.el.gz
(defun erc-word-at-arg-p (pos)
  "Report whether the char after a given POS has word syntax.
If POS is out of range, the value is nil."
  (let ((c (char-after pos)))
    (if c
        (eq ?w (char-syntax c))
      nil)))