Function: cperl-word-at-point
cperl-word-at-point is a byte-compiled function defined in
cperl-mode.el.gz.
Signature
(cperl-word-at-point &optional P)
Documentation
Return the word at point or at P.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-word-at-point (&optional p)
"Return the word at point or at P."
(save-excursion
(if p (goto-char p))
(or (cperl-word-at-point-hard)
(progn
(require 'etags)
(funcall (or (and (boundp 'find-tag-default-function)
find-tag-default-function)
(get major-mode 'find-tag-default-function)
'find-tag-default))))))