Function: erc-forward-word

erc-forward-word is a byte-compiled function defined in erc-backend.el.gz.

Signature

(erc-forward-word)

Documentation

Move forward one word, ignoring any subword settings.

If no subword-mode(var)/subword-mode(fun) is active, then this is (forward-word).

Source Code

;; Defined in /usr/src/emacs/lisp/erc/erc-backend.el.gz
(defun erc-forward-word ()
  "Move forward one word, ignoring any subword settings.
If no `subword-mode' is active, then this is (forward-word)."
  (skip-syntax-forward "^w")
  (> (skip-syntax-forward "w") 0))