Function: studlify-word

studlify-word is an autoloaded, interactive and byte-compiled function defined in studly.el.gz.

Signature

(studlify-word COUNT)

Documentation

Studlify-case the current word, or COUNT words if given an argument.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/play/studly.el.gz
;;;###autoload
(defun studlify-word (count)
  "Studlify-case the current word, or COUNT words if given an argument."
  (interactive "*p")
  (let ((begin (point)) end rb re)
    (forward-word-strictly count)
    (setq end (point))
    (setq rb (min begin end) re (max begin end))
    (studlify-region rb re)))