Function: tcl-word-no-props

tcl-word-no-props is a byte-compiled function defined in tcl.el.gz.

Signature

(tcl-word-no-props)

Documentation

Like current-word, but strips properties.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/tcl.el.gz
(defun tcl-word-no-props ()
  "Like `current-word', but strips properties."
  (let ((word (current-word)))
    (set-text-properties 0 (length word) nil word)
    word))